Blogs
-
PD2 Tough Questions – Refresh your amygdala
Integer x = 1; Integer Y = 0; While(x < 10){Y++;} Will go in infinite loop because x is not being updated inside loop to break the condition. Integer x = 1; Integer Y = 0;While(x < 10){Y++;} ______________________ Contact con = new Contact( LastName = ‘JOHNSON’, email = ‘Web@test.com’);Savepoint sp = Database.setSavepoint();insert con;Database.rollback(sp);system.debug(con);con.email =…
-
Person Account – Pros & Cons – Salesforce Contact Management
PERSON ACCOUNT: PROS PERSON ACCOUNT: CONS Some other useful help Articles: Person Account VS Business Account – An Essential Decision in Contact Management in Salesforce https://www.linkedin.com/pulse/20140507175728-96768874-5-reasons-to-avoid-person-accounts-in-salesforce-com/ https://cirriussolutions.com/salesforce-person-acconts
-
Generate CSV using apex and email as attachment