How to reset Salesforce Trailhead playground developer org password Login to your trailhead account https://trailhead.salesforce.com/ Lanuch your “My Trailhead Playground” Setup -> Enter Users in the Quick Find box, then select Users…
CRM
-
- 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…
-
What are the benefits of Enabling Territory Management in Salesforce? Choose 3 answers a. Ability to generate account sharing rule based on territory membership b. Ability to expand private sharing…
-
How to get the default picklist value using Apex Class? Its possible to get the default picklist value using apex class and doesn’t require the SOQL Query and its not…
- CertificationConfigurationSALESFORCESalesforce ConfigurationSalesforce CustomizationSalesforce Interview QuestionsSalesforce.com
What is the difference between the Salesforce and Salesforce Platform User License
What is the difference between the Salesforce and Salesforce Platform User License? Whenever creating/updating the Salesforce User, there is a picklist field called “User License” with several options. here are…
- ConfigurationSALESFORCESalesforce ConfigurationSalesforce.com
Modify columns in Recent Obejcts View in Salesforce
Modify columns in Recent Obejcts View in Salesforce Recent Obejcts view (Account, Contact, Case, Custom Objects, etc) is one of the Standard View for each objects and default sorted based…
-
How to implement my web app (https) to Salesforce1 App Mobile Its possible using the below approach: 1) Create a new visualforce page with Available for Salesforce mobile apps checked…
-
Tabbed Accounts Visualforce Page is not working in Salesforce1 App http://wiki.developerforce.com/page/Tabbed_Accounts_in_30_seconds in my Salesforce1 App users see the default layout, not the Tabbed_Accounts VF page? Solution: “Available for Salesforce Mobile…
-
How to Execute the Javascript Functionality in Salesforce Custom Button: {!REQUIRESCRIPT(‘/soap/ajax/28.0/connection.js’)} var opportunityRecord= {!GETRECORDIDS($ObjectType.OpportunityLineItem)}; if (opportunityRecord[0] == null) { alert(“Please select at least one product to traffic.”) } else {…