Spring 21 – Access Custom Metadata Type Records using SOQL and without Using SOQL Custom metadata types enable you to create your own setup objects whose records are metadata rather …
SOQL
- ReleaseSALESFORCESpring 21
-
Visual Studio Code Tips – Execute SOQL Query in Visual Studio Code This post & video explained about to Execute SOQL in Visual Studio Code: – Execute SOQL Using Rest API and …
-
How many list of users assigned into the Salesforce Permissionset This post describes about to get the list of counts assigned to the users into the Salesforce Permissionset. A permission …
-
how to identify the logged in salesforce org either sandbox or production This blog post to describe about to identiy the salesforce org type either sandbox or production. we have …
-
Get Record Type ID Using Object Name We can get the Object Record Type Id values in multiple ways like using SOQL, getDescribSObject and below are some examples: Example 1: …
-
How to find manager list using apex class in salesforce Its possible to find out from managerId field in User Object and below is the code to find manager hierarchy …
- Email TemplateSALESFORCESalesforce CustomizationSalesforce.comVisualforce
How to fetch Contact details from Opportunity Contact Roles using SOQL in Salesforce?
How to fetch Contact details from Opportunity Contact Roles using SOQL in Salesforce? SOQL QUERY: SELECT Id, Opportunity.Name, Contact.Email, Contact.Name, Role, isPrimary FROM OpportunityContactRole Where OpportunityId =’OpportunityID’ Here: OpportunityID – …
- APEXSALESFORCESalesforce CustomizationSalesforce.comSOQLVisualforce
How to get the logged in User Profile Name using Apex Class
How to get the logged in User Profile Name using Apex Class? We can able to get the profile details using the Profile Standard Object SOQL Query: Select Id, Name …
- APEXSALESFORCESalesforce CustomizationSalesforce.comSOQLVisualforce
How to get the Role name and Profile Name from User Object using SOQL
How to get the Role name and Profile Name from User Object using SOQL We can able to get the Role Name and Profile Name details from User Standard Object …
- APEXInterview Questions and AnswersSALESFORCESalesforceSalesforce CustomizationSalesforce Interview QuestionsSalesforce.comSOQLSOSLTechnical Interview Questions and Answers
Differences between SOQL and SOSL in Salesforce?
Differences between SOQL and SOSL in Salesforce? SOQL (Salesforce Object Query Language) Let’s you query a object in salesforce. You can have nested queries. Returns a list of sobject records. …