Recently, I have read a news blog that Yahoo CEO Marissa Mayer has created a Single Page CV for herself - all of her work experience, education, including her daily activities. Quite impressed, I thought if Yahoo CEO can fit her CV into a single page, then definitely I should be able to also with just 8 …
Apex based sharing records with Roles
Apex based sharing a record with a User or Public Group is easy and direct. Below is the sample sharing of an Account record with a user. AccountShare Acctshr = new AccountShare(); Acctshr.AccountId = aid; Acctshr.UserOrGroupId = 'User.Id'; Acctshr.AccountAccessLevel = 'Edit'; Acctshr.OpportunityAccessLevel = 'Edit'; Database.SaveResult sr = Database.insert(Acctshr,false); But how do you share with a …