How to Create a Wrapper Class In Batch Apex we can build a list of your custom wrapper class in your execute method, and maintaining that list at the class…
April 2013
-
-
What is Wrapper Class and Use of Wrapper Class in Salesforce? A wrapper or container class is a class, a data structure, or an abstract data type whose instances are…
-
Salesforce Useful Links Apex Developer’s Guide AppExchange API Developer’s Guide AJAX Developer’s Guide Bulk API Developer’s Guide Force.com Developer’s Network Force.com Migration Tool Guide Salesforce Ideas SOQL/SOSL Reference System Status…
-
SOQL statements cannot query aggregate relationships more than 1 level away from the root entity object. SOQL QUERY: Example1: SELECT Id, Name, (SELECT WhoId, WhatId, Subject, AccountId, (SELECT Id, EventId,…
-
What is ERT Member? ERT stands for Emergency Response Team – an organizational initiative to handle any emergency situation to safeguard associates. Who can become an ERT member? Any associate (male or…
-
Where the Event Invitee list stored in SFDC Object? Events details stored in EVENT Object and Event Invitee list stored in the EventRelations Salesforce Standard Object. How to retrive the…
-
How to print the page using javascript? 1) Print Window On Load: using page load we can print easily print the page: <script type=”text/javascript”> window.onload = function() { window.print(); }…
- ConfigurationSALESFORCESalesforce Interview Questions
Is it possible to create Lookup or Master-Detail Relationship from Activity Object (Task/Event)
Is it possible to create Lookup or Master-Detail Relationship from Activity Object (Task/Event)? No, it is not possible to create Lookup or Master-Detail Relationship from Activity Object (Task/Event). Event we…
-
How to use Salesforce Multipicklist field in SOQL? Consider here BillingState is a Multipicklist and we need to list out only certain states like California and New York. We can…
-
Is it possible to change the Field Data Type from Text to Formula in Salesforce Object? No, its not possible. Formula fields are a read-only fields that cannot be converted…