Posts

Salesforce Developer Interview Questions

1) How many type of Relationship between objects in Salesforce 2)What is the difference between trigger.new and trigger.old? 3) Do picklist dependencies follow through onto the Visual Force code or is there a special tag for it within the code? 4) What are permission sets and how do they differ from profiles. 5) What deployment methods have you used ? List few components which cannot be deployed using force.com IDE or change sets.  6) How will you load data for a child object? how u load notes and attachment ? 7) How many ways u sharing models (also permission set) 8) Explain lead to opportunity conversion  9) Different types of Environment 10) How can I create developer, full sandbox. 11) In how many days can one refresh a full sandbox. 12) What are the different ways of making a field mandatory? 14) How do I log a case with salesforce.  15) What is the order of execution of workflow rules, validation rules, triggers. 16) How can one read pa...

repeat css looks like pageblock

If you want your repeat css looks like pageblock use this code -  1) Use class="list" in Table property  2) Use class="headerRow" in tr property                                         

Post Sandbox Refresh changes

Post Sandbox Refresh or New Sandbox creation activity: Disable Scheduled Apex Jobs Disable Outbound Messages Reconfigure External Web Service calls for a non-production environment Disable Analytic Snapshots Get the new Sandbox Org ID and instance Id if required Remove the email suffix for required users Create any required users who don't exist in Production Regenerate (or completely disable) Inbound Email Services Delete / modify entries in Remote Site Settings if you don't want to perform certain callouts Disable "Big Deal Alert" on Opportunities - can be embarassing to send an email with "My awesome test Opp !!1" to CEO If you have managed packages with API keys (like FinancialForce) - ask their support teams to regenerate the keys If you have "power users" that will coordinate User Acceptance Testing - create entries in Delegated Administration area so they can "login as"

Pre-Populate fields on button/Link

Many times we need to pre-populate some field while creating/updating a record on button/Link click. It may be on custom visualforce page or standard layout. 1) Prepopulating Text, Number fields on Standard Pagelayout: / Var1 /e?CF Var2 = Var3 &retURL=%2F Var4 Var1=3 char code of object (i.e Account=001, Contact=003 for Custom/Other object click on Object                                                     Tab to get unless object Tab is not override) Var2=SFDC Id of the field need to pre-populate. Var3=Value need to populate (may be hard coded or variable per requirement i.e {!Account.Name}) Var4= URL need to redirect after record Save. e.g  /00T/e?CF00NA0000005pr8F=1&retURL=%2F{!Lead.Id} 2) Prepopulating Lookup fields  on Standard Pagelayout: for Lookup prepopulate we need to map field Id and Name both. e.g.  /...

field set in visualforce page