Assignment rule in Salesforce
Create assignment rules to automate your organization’s lead generation and support processes. Lead Assignment Rules—Specify how leads are assigned to users or queues as they are created manually, captured from ....
Create assignment rules to automate your organization’s lead generation and support processes. Lead Assignment Rules—Specify how leads are assigned to users or queues as they are created manually, captured from ....
Search filter fields allow us to filter the records that are retrieved after searching from the search bar. 1. Go to Search Filter fields. 2. Select the fields and click ....
size method can be used in the rendered attribute for conditional rendering based on list size in the Salesforce Visualforce page. Sample Code: <apex:pageBlockTable value="{!empList}" var="emp" rendered="{! IF(empList.size > 0, ....
Date: Date dat = System.today(); //Returns today's date Date dt = dat.addDays(2); // Returns day after tomorrow's date Datetime: Datetime dt = System.now(); // Returns current date and time Datetime ....
The CPU Time that was introduced in Winter '14 release. Prior to Winter' 14, Salesforce had Script limit. For Synchronous call, it is 10,000ms.For the Asynchronous call, it is 60,000ms. ....
Sample Query: SELECT PricebookEntry.Product2.Name FROM OpportunityLineItem (Or) SELECT PricebookEntry.Name FROM OpportunityLineItem LIMIT 10 Sample Code: for ( OpportunityLineItem OLI : [ SELECT PricebookEntry.Product2.Name, PricebookEntry.Name FROM OpportunityLineItem LIMIT 10 ] ) ....
Sample Query: SELECT PricebookEntry.Product2Id FROM OpportunityLineItem PricebookEntry.Product2Id will give you the Product Id associated with that Opportunity Product(Opportunity Line Item). If the above workaround didn't help you to fix the ....
Sample Query: SELECT Id, Name, Account.Name FROM Contact