• rama krishna 181
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 8
    Questions
  • 1
    Replies
hi ..fris
1) what is the meaning of Data integration tools like Data Loader ?
hi ,
trigger Compare_OldandNewvalues on Account (before update) {  
  for (Account acc: Trigger.new) {  
      Account oldAccount = Trigger.oldMap.get(acc.ID);      
  if(acc.AccountNumber != oldAccount.AccountNumber) {
// can you explain this code 
6. difference b/w system.assert and system.assertEquals...?
5. is it possible to send email in triggers..?
4. different events in triggers..? 
3. what is action function & action support..?
2. when we can use used record types..?
1. BY avoiding profiles and roles,how can you make the user to access the records ..? 
hi ,
trigger Compare_OldandNewvalues on Account (before update) {  
  for (Account acc: Trigger.new) {  
      Account oldAccount = Trigger.oldMap.get(acc.ID);      
  if(acc.AccountNumber != oldAccount.AccountNumber) {
// can you explain this code