Salesforce Interview questions with answers Part 8
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 ....
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 ....
For Spring '13 release Training, kindly click the below URL http://www.salesforce.com/customer-resources/releases/spring13/release-training.jsp For Spring '13 release notes, kindly click the below URL https://na1.salesforce.com/help/doc/en/salesforce_spring13_release_notes.pdf For videos, kindly click the below URL http://www.salesforce.com/customer-resources/releases/ ....
Only standard style sheets can be used in apex:pageBlockTable tag in aVisualforce page. <apex:pageBlockTable> must be contained in <apex:pageBlock> or <apex:pageBlockSection>. If we want to add custom style sheets we have to use apex:dataTable tag ....
Mini Console View is used to customize fields that should be visible in Mini view section in Console Tab. 1. Click "Mini Console View" link. 2. Select the Objects(These objects ....
Dashboard which is running under current logged in user permission are known as “Dynamic Dashboard”. A dynamic dashboard displays the data of the user viewing it rather than the data ....
Governor limits are runtime limits enforced by the Apex runtime engine. Since Apex runs in a shared, multitenant environment, the Apex runtime engine strictly enforces a number of limits to ....