Friday, February 19, 2016

Tips for Salesforce

1.Email Template.

      When Record is meet the Criteria  send mail to User/Group/Role.

      By adding below one in email you can send link of the Record to User.

       Account Link :{!Account.Link}.

2. User utility class.


  public static user gtUser()
    {
    
        userProfile=[select id , profile.name from user where id=: userinfo.getuserid()];
        return userProfile;
    }
 
 

 

 

No comments:

Post a Comment