• David Lorber
  • NEWBIE
  • 10 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
I'm having trouble getting started with a basic trigger.  When a product is added to a quote, I want it to pull the product description.  Any help getting started would be appreciated

my test so far looks like:

trigger AddDescription on QuoteLineItem (before insert) {
    for (QuoteLineItem qli : Trigger.New){
        qli.Description = 'Description here';
    }
}
I'm having trouble getting started with a basic trigger.  When a product is added to a quote, I want it to pull the product description.  Any help getting started would be appreciated

my test so far looks like:

trigger AddDescription on QuoteLineItem (before insert) {
    for (QuoteLineItem qli : Trigger.New){
        qli.Description = 'Description here';
    }
}