Monthly Archives: May 2014

Salesforce Recycle Bin

Salesforce Recycle Bin When we will delete records or objects or anything in salesforce, then we know it will go to Recycle bin and it will be in Recycle bin for 15 Days only.  How to access Recycle bin: You can refer to below pic for further details. Go to any of your objects tab […]

Interview Questions on Salesforce API’s

 Question and Answers: I am working on a salesforce feature, where we are trying to expose a single web Service method in a custom class to a “Partner” so they can generate leads. The class/method has been created/tested and functions as expects, so we are working on implementation. I have been poring over all of […]

Salesforce API’s with Examples………..

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 Settings in Salesforce

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

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 […]

Salesforce Currency Conversion in reports

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 – Custom Currency Conversion Code

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 […]

Salesforce Apex Unit Testing

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 […]