Salesforce1
The Salesforce1 Platform brings together Force.com, Heroku, and ExactTarget into one family of cloud services — all built API first — to help deliver apps that connect products, users, and ....
The Salesforce1 Platform brings together Force.com, Heroku, and ExactTarget into one family of cloud services — all built API first — to help deliver apps that connect products, users, and ....
Industry Knowledge - 15% Contact Center KCS Implementation Strategies - 5% Contact Center deployment Service Cloud Solution Design - 15% Salesforce Console Knowledge Management - 11% Knowledge life cycle Interaction ....
To set the Field Level Security, check the below link https://www.infallibletechie.com/2015/07/how-to-set-field-level-security-in.html Field Level Security(FLS) in Salesforce restricts access in below 1. Record Detail page 2. Record Edit page 3. Related ....
Role Hierarchy Territory Hierarchy User is assigned to one role. User is assigned to multiple territories. An account is owned by single user. An account can belong to multiple territories. ....
Territory Management is an account sharing system that lets users access accounts based on the characteristics of the accounts, such as geography, product line, or business unit. A territory is ....
1. When the record owner is changed through UI, there is a choice to keep associated teams. 2. When the record owners is changed through Data Loader, there is no ....
The ways to give object permissions to users in Salesforce are 1. Profile 2. Permission Set Cheers!!!
Standard Junction objects available in Salesforce are 1. OpportunityLineItem Junction object between Opportunity and Product objects. 2. PriceBookEntry Junction object between Product and Price Book objects. 3. CaseArticle Junction object between ....
UserInfo.getUserName().substringAfterLast('.') will give you sandbox name. The username will always ends with .Sandbox_Name in sandbox. Cheers!!!
URL.getSalesforceBaseUrl().getHost()) will give the URL of Salesforce instance. Sample Code: public Boolean isSandbox() { return URL.getSalesforceBaseUrl().getHost().left(2).equalsignorecase('cs'); } Another way to find is SELECT Id, IsSandbox, InstanceName, Name FROM ....