Lazy Loading Visualforce page
To reduce or delay expensive calculations or data loading, use lazy loading, a technique in which a page loads its essential features first and delays the rest—either briefly or until ....
To reduce or delay expensive calculations or data loading, use lazy loading, a technique in which a page loads its essential features first and delays the rest—either briefly or until ....
Calls to the following methods count against the number of DML queries issued in a request. Approval.process Database.convertLead Database.emptyRecycleBin Database.rollback Database.setSavePoint delete and Database.delete insert and Database.insert merge and Database.merge ....
Use convertCurrency() in the SELECT statement of a SOQL query to convert currency fields to the user’s currency. This action requires that the org has multiple currencies enabled. You can’t ....
Amount is the Opportunity's worth. Expected Revenue is a formula field. Expected Revenue = Amount * Probability. Cheers!!!
Truncating a custom object permanently removes all of its records. You can’t recover the records from the Recycle Bin. A copy of the truncated object appears in the Deleted Objects ....
This issue is caused due to unsupported character in your component name. For example, if your component name is P&W, replace & with &. So, it will look like P&W. ....
1. Variable Assignment 2. Apex codes 3. If, for, etc.. loops 4. Inside the If loop, if condition matches 5. Inside for loop, if condition satisfies Cheers!!!
The name of the standard relationship from Account down to Contact is Contacts. Cheers!!!
The action methods that are supported by all standard controllers. 1. save 2. quicksave 3. edit 4. delete 5. cancel 6. list Check the below link for more info https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_controller_std_actions.htm Cheers!!!
The return type of a SOSL search is List of List of sObjects. Sample Code: List<List<SObject>> searchList = [FIND 'map*' IN ALL FIELDS RETURNING Account (Id, Name), Contact, Opportunity, Lead]; ....