What is the use of “With Sharing” and “Without Sharing” keyword in Apex Class? Apex code generally runs in the “System” mode meaning that through an Apex Class the current …
Salesforce
- APEXInterview Questions and AnswersSalesforceSALESFORCESalesforce Interview QuestionsTechnical Interview Questions and Answers
-
How to get the Salesforce Object Name using Salesforce ID? To convert it to 18 digits you can simply set it to an Id type variable: Id sfdcId = ‘001J000001eun1Q’; …
- Interview Questions and AnswersSalesforceSalesforce Interview QuestionsTechnical Interview Questions and Answers
What is the difference between a 15 digit and a 18 digit Salesforce ID
What is the difference between a 15 digit and a 18 digit Salesforce ID? A 15 digit Salesforce ID is case sensitive. For Ex: 00120000001YztiABD and 00120000001YZTIABD are different. 15 …
- Interview Questions and AnswersSalesforceSalesforce Interview QuestionsTechnical Interview Questions and AnswersTrigger
Best practices for Salesforce Apex Triggers
Best practices for Salesforce Apex Triggers? Test your Triggers against bulk records. Your Apex Triggers should always work well for a single record as well as bulk insert/updation using data …
- Interview Questions and AnswersSalesforceSalesforce Interview QuestionsTechnical Interview Questions and Answers
What is the difference between a Lookup Relationship and a Master-Detail Relationship in Salesforce
What is the difference between a Lookup Relationship and a Master-Detail Relationship in Salesforce? In a Master Detail, when the master is deleted the child records are deleted. Whereas, in …
-
Salesforce Certification Release (Maintenance) Exam Schedule The current schedule for the maintenance exams is described in the table below
-
Salesforce Winter ’16 Release – important updates and new features below is the important updates and new features in Salesforce Winter ’16 Release
-
Replace new line, space, commas characters using Apex Class To Replace the New Line Using Apex Class: It depends on which character is used (that differs between operating systems). If …
- SALESFORCESalesforce CertificationSalesforce Interview QuestionsSOQL
Clear Users from Debug logs using SOQL in Salesforce
Clear Users from Debug logs using SOQL in Salesforce ERROR: sObject type ‘TraceFlag’ is not supported. Follow below steps in Production/Sandbox/Developer Organization if you see the too many users added in …
- APEXSALESFORCETrigger
Automatically convert Lead to Account, Contact and Opportunity using Apex Trigger
Automatically convert Lead to Contact using Apex Trigger Requirement: Automatically convert Lead to Account, Contact and Opportunity using Apex Trigger if the Lead Status = Open For Example: Here we …