Salesforce API’s  with Real Time Example The different Types of Salesforce API’s are mentioned below and you can also get the same info from Salesforce Help material. My intention is to help newbies with Real Time Example which I explained Below.. SOAP API Use SOAP API to create, retrieve, update or delete records, such as accounts, leads, […]

Custom Setting  Custom Settings is an essentially custom object that is exposed in the applications cache and accessible via their own API. Custom setting will give us to use in SOQL and there is no limit of fields and also use custom settings in formula fields, validation rules, Apex code and the Web Services API. […]

Salesforce Sandbox: Here’s how it works:   When you create or refresh (essentially deletes and recreates a sandbox using the same name) a sandbox, a copy of the production environment at that point in time is made.  The vast majority of the configuration remains the same as the production org.  There are a few tweaks to […]

When you have multi-currency enabled, all Currency fields have a ‘copy’ field that shows the value in the converted Currency — they are the fields with (Converted) in the name.Using the standard Amount field on Opportunity as an example, the Amount field will always show the value in the Currency for the Opportunity.  The Amount […]

Salesforce.com – Custom Currency Conversion Code I would like to explain this issue through a scenario, suppose we need to dointegration between SAP and Salesforce.com. Salesforce.com partner portal willused to create opportunity for partners and SAP will be used to maintain the placed orders.  We need to update the amount of opportunity products which will be rolled up at […]

This is a sample code of Apex language and all test classes starts with the annotation @is Test. It has Start and Stop methods.Plz find below as sample code that we use for Apex class testing./** * This class contains unit tests for validating the behavior of Apex classes * and triggers. * * Unit […]

Morning I have a conference on salesforce data model and its working to one of our top clients Steel Plant, Visakhapatnam. So I thought that the diagram in PPT I used will help many a lot. Probably it is know to every one. But, it is like a revision for all who are learning salesforce. Try to save […]

1. How many maximum number of aliased fields you can have in Aggregate Query? Ans: 100 2. Can we use Database.QueryLocator for Aggregate Queries?Ans: No 3. Arrange these in appropriate Order: HAVING,WHERE,LIMIT,GROUP BY,ORDER BYAns: WHERE, GROUP BY, HAVING, ORDER BY, LIMIT   4. What is “GROUP BY ROLLUP” and “GROUP BY CUBE” with Example?Ans: GROUP […]

To define a dependent picklist: 1.             Navigate to the fields area of the appropriate object.  For standard objects, from Setup, click Customize, select the appropriate object, and click Fields. For custom task and event fields, from Setup, click Customize | Activities | Activity Custom Fields.  For custom objects, from Setup, click Create | Objects, and […]

Roll-Up Summary Fields While your formula fields calculate values using fields within a single record, roll-up summary fields calculate values from a set of related records, such as those in a related list. You can create roll-up summary fields that automatically display a value on a master record based on the values of records in […]