• Lee Kraus MtnPt
  • NEWBIE
  • 0 Points
  • Member since 2015
  • Principal Solutions Architect
  • Mountain Point


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 1
    Likes Given
  • 1
    Questions
  • 3
    Replies
trigger HelloWorld on Lead (before update) {
    For (Lead l: Trigger.new) {
        l.FirstName = 'Hello';
        l.LastName = 'World';
        
    }

}
This Trigger works as expected in Classic, but will update a New record in Lightning.  Why?
 
trigger HelloWorld on Lead (before update) {
    For (Lead l: Trigger.new) {
        l.FirstName = 'Hello';
        l.LastName = 'World';
        
    }

}
This Trigger works as expected in Classic, but will update a New record in Lightning.  Why?
 
I wanted to figure out if there is or if there is any plan to open challenges data via an api so that we can reward employees for completing trialhead data.
I wanted to figure out if there is or if there is any plan to open challenges data via an api so that we can reward employees for completing trialhead data.