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 …
SOQL
-
-
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 …
- APEXSALESFORCESalesforce ConfigurationSalesforce.comSOQLSOSLTrigger
How to find the current records RecordType Name in Apex Trigger
How to find the current records RecordType Name in Apex Trigger In Apex Trigger, we can’t able to retrive the RecordType Name from Trigger context. but its possible with the …
- 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. …
- Interview Questions and AnswersSalesforceSALESFORCESalesforce Interview QuestionsSOQLTechnical Interview Questions and Answers
How to find the distinct values of a particular field in a SObject using SOQL Query?
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: …
- 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 …
- 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 …
-
How do Query Queue Id, Name in Salesforce Apex? Queues are stored as a Group SObject: For Example: Group groupDetail = [SELECT Id, Name, DeveloperName, Email, Type FROM Group where …