How to find the distinct values of a particular field in a SObject using SOQL Query? Its possible by using the GROUP BY Clause in an SOQL Query. For example: …
SFDC
- Interview Questions and AnswersSalesforceSALESFORCESalesforce Interview QuestionsSOQLTechnical Interview Questions and Answers
- Interview Questions and AnswersSalesforceSALESFORCESalesforce Interview QuestionsSOQLSOSLTechnical Interview Questions and Answers
What are Dynamic Queries in SALESFORCE
What are Dynamic Queries in SALESFORCE? A dynamic query is a SOQL or SOSL query which can be constructed and executed at runtime. It is the process of constructing the …
- APEXInterview Questions and AnswersSalesforceSALESFORCESalesforce Interview QuestionsTechnical Interview Questions and Answers
Salesforce Interview Questions for Cognizant
Salesforce Interview Questions for Cognizant 1) What is the advantage of using custom settings? 2) For which criteria in workflow “time dependent workflow action” cannot be created? 3) What are …
-
Setup Audit fields and Update Records feature in Salesforce Winter 16 release What is Audit fields feature? This feature allow us to migrate created date, last modified date, created by …
- APEXInterview Questions and AnswersSalesforceSALESFORCESalesforce Interview QuestionsTechnical Interview Questions and Answers
What is the Difference Between Rendered, Rerender, RenderAs in Visualforce page
What is the Difference Between Rendered, Rerender, RenderAs in Visualforce page? Rendered it is used to show and hide elements works like css in general we can say display properties …
- APEXInterview Questions and AnswersSalesforceSALESFORCESalesforce Interview QuestionsTechnical Interview Questions and Answers
How to follow entities (Accounts, Contact, Opportunities, Custom Objects) in Chatter?
How to follow entities (Accounts, Contact, Opportunities, Custom Objects) in Chatter? By Adding records to the ‘EntitySubscription‘ object. This object is available only through the API. EntitySubscription Objects stores which …
- APEXInterview Questions and AnswersSalesforceSALESFORCESalesforce Interview QuestionsTechnical Interview Questions and Answers
What is an “upsert” DML statement in Salesforce?
What is an “upsert” DML statement in Salesforce? DML stands for Data Manipulation Language. UPSERT is a one of the DML operation. When a record is upserted (ex: upsert account/contact …
- APEXInterview Questions and AnswersSalesforceSALESFORCESalesforce Interview QuestionsTechnical Interview Questions and Answers
What is the use of “With Sharing” and “Without Sharing” keyword in Apex Class
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 …
-
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 …