How to add value to a specific array or list index using apex in Salesforce?
add( index, value ) can be used to add value to a specific array or list index using apex in Salesforce. Sample code: List < String > strList = new ....
add( index, value ) can be used to add value to a specific array or list index using apex in Salesforce. Sample code: List < String > strList = new ....
Use un parameter in the URL to set username in the Salesforce login URL. To set Username and Password:Use un and pw URL Parameters. https://login.salesforce.com/?un=test@test.com&pw=Sample1234567890 Login URL: Domain URL:
Related To indicates the record that the task is related to, such as an account or an opportunity. This field is available only when a user relates the task to ....
Sample Code: Apex Class: public class RelatedListController { @AuraEnabled public static RelatedListResult fetchRecs( String recId, String sObjName, String parentFldNam, String strCriteria ) { String strTitle = ' ('; List < sObject > listsObjects = new List < sObject >(); RelatedListResult obj = new RelatedListResult(); String strSOQL = 'SELECT Id FROM ' + sObjName + ' WHERE ' + parentFldNam + ' = '' + recid + '''; if ( String.isNotBlank( strCriteria ) ) strSOQL += ' ' + strCriteria; strSOQL += ' LIMIT 4'; listsObjects = Database.query( strSOQL ); Integer intCount = listsObjects.size(); if ( intCount > 3 ) { List < sObject > tempListsObjects = new List < sObject >(); for ( Integer i = 0; i <3; i++ ) tempListsObjects.add( listsObjects.get( i ) ); obj.listsObject = tempListsObjects; strTitle += '3+'; ....
Sample Code: String str = 'a,b,c,d,e'; system.debug( 'Count is ' + str.split( ',' ).size() ); Output:
In Lightning Experience, each user's Top Results page includes the objects they use the most. For new users or users that have little to no activity in Salesforce for over ....
String.join() method can be used to join list of strings with a separator using Apex in Salesforce. Sample Code: List < String > strList = new List < String > { ....
In order to make sure Service Resource is showing in the Field Service tab in Salesorce Field Service Lightning, add the Service Resource as Primary Member to a Service Territory.
Package.xml: <types> <members>ObjectAPIName.FieldSetAPIName</members> <name>FieldSet</name> </types>
In the below example, if the account type is Customer - Direct and if the user tries to update any fields other than Industry and Description, it will throw an ....