Salesforce interview stuffs
1. How to add Row limit and Dashboard settings for Tabular report? 2. How to find total no of records using SOQL? 3. How to use a list variable in ....
1. How to add Row limit and Dashboard settings for Tabular report? 2. How to find total no of records using SOQL? 3. How to use a list variable in ....
1. If the OWD for account is "Private", is it possible for a user in higher hierarchy to see the records owned by the user below his/her hierarchy? 2. If ....
1. What are sharing rules, when do you used sharing rules? 2. Explain lead to opportunity conversion? 3. What are record types? Why are the record types used? 4. When ....
How to get a count of million records from object? Maximum how many extensions can use in VF page? Tasks are storing in which object? Explain about batch apex? Best ....
1. How to force lead assignment rule via Apex while updating or adding the Lead? 2. How to implement the pagination in SOQL ? 3. How to access custom controller-defined ....
Customization Development Data Migration Apex Visual Force Triggers Cheers!!!
1. Workflow rules can perform which of the following actions using standard Salesforce.com functionality? A. Update a FieldB. Send an Outbound MessageC. Send an EmailD. ....
Sample Code: trigger tgrCounter on Mileage__c (after insert, after update) { List <Mileage__C> MilToupdate = new List<Mileage__C>(); for(Mileage__cMlg : Trigger.new) { Mlg.Counter__c = Mlg.Counter__c + 1; ....
Sample Code: public class insst1{ public void sav() { for(integer i=0;i<250;i++) { Lead c=new lead(); c.FirstName='Mr'+i; c.company='XYZ'; ....
What is Apex? What is VisualForce? What is an S-Control? What is the difference between Visualforce and S-Control? What is mini page layout? What are wrapper classes? When do we ....