How to get Salesforce URL using Apex?
getOrgDomainUrl() can be used in Salesforce Apex to get your org URL. getCurrentRequestUrl() can used in Salesforce Apex to get the URL of an entire request on a Salesforce instance. ....
getOrgDomainUrl() can be used in Salesforce Apex to get your org URL. getCurrentRequestUrl() can used in Salesforce Apex to get the URL of an entire request on a Salesforce instance. ....
1. Go to Setup --> Manage Users and select Permission Sets. 2. Open a Permission Set. 3. Click "Add Assignments". 4. Select the users. 5. Click "Assign" button. Note: You ....
1. You can create only up to 1,000 permission sets. 2. Permission Set is used only for granting access. It cannot be used for revoking access. 3. User permissions cannot be included. 4. ....
Sample Trigger: trigger sendEmail on Employee__c (after insert) { List<Attachment> listAttachments = new List<Attachment>(); for(Employee__c e : trigger.new) { ....
OpportunityLineItem is the junction object between Opportunity and Product objects. Cheers!!!
Mini Pagelayout in Salesforce allows you to choose the fields and related lists that will display in the mini view of the console. You can define mini page layouts for the ....
Mini Pagelayout in Salesforce allows you to choose the fields and related lists that will display in the mini view of the console. You can define mini page layouts for the ....
To remove leading or trailing white space characters using Apex in Salesforce, trim() is used. Sample Code: String str1 = ' test '; String str2 = str1.trim(); //test will ....
Below is the best link for getting started with Salesforce https://developer.salesforce.com/trailhead Cheers!!!
Case management enables you to make the most of each interaction and become a true champion of customer success. Automating the distribution of cases in your service organization ensures that ....