Salesforce Interview questions with answers Part 10
1. Write a query for below. I have 1 parent(account) and 1 child(contact),how will you get F.name,L.name from child and email from the account when Organization name in account is ....
1. Write a query for below. I have 1 parent(account) and 1 child(contact),how will you get F.name,L.name from child and email from the account when Organization name in account is ....
State and country picklists allow users to select states and countries from predefined, standardized lists, instead of entering state and country data into text fields. State and country picklists allow ....
Multitenancy refers to a standard in software architecture where a single instance of the software runs on a server, serving multiple client organizations (tenants). A software application is designed to ....
1. Ajax Components in V.F?apex:actionPoller, apex:actionFunction, apex:actionSupport, etc.2. Salesforce sites?Used to show data from our organization for public view.3. Rendered and Re Rendered and Re Renderdas?http://infallibletechie.blogspot.com/2012/10/difference-between-rendered-renderas.html4. Auto-response rules and Escalation ....
Context Variables in triggers are isExecuting, isInsert, isUpdate, isDelete, isBefore, isAfter, isUndelete, new, newMap, old, oldMap, size. isExecuting Returns true if the current context for the Apex code is a trigger, not ....
1. How to have standard object as required child to custom object(which is not possible through standard process, have to bypass this restriction)? Create Lookup and make the lookup field ....
Record types allow you to offer different business processes, picklist values, and page layouts to different users based on their profiles. Record types can be used in various ways, for ....
In Salesforce, we have One to Many relationship and Many to Many relationship. To achieve One to One relationship in Salesforce, kindly follow the below steps Objects: Interest, Employee. Relationship: ....
Sample Code: Visualforce page: <apex:page Controller="sample" sidebar="false" ><apex:form > <apex:pageblock id="pg" > <apex:datatable value="{!mem}" var="m" rules="all" border="1" columnsWidth="100px,100px,100px" cellspacing="8" cellpadding="8" rows="5"> <apex:facet name="footer">Total Number of records: {!count}</apex:facet> <apex:column value="{!m.Name}"> ....
To assign Permission Set for multiple Users, kindly follow the below steps 1. Login into Apex Data loader. 2. Click "Insert" button. 3. Select "Permission Set Assignment" as object and ....