FORECAST CATEGORY Each of your opportunities has a Stage picklist value that automatically maps to a Forecast Category value. The forecast category determines what column in your forecast will include …
January 2013
-
-
Salesforce Standard Forecasts and Customizable Forecasts Overview A forecast is your best estimate of how much revenue you can generate in a quarter. This amount is divided between Commit Amount …
-
SEARCH the Salesforce data using PHP <?php ini_set(“soap.wsdl_cache_enabled”, “0″); // PHP Tool Kit class scripts to login to Salesforce Org require_once (‘../includes/soapclient/SforcePartnerClient.php’); require_once (‘../includes/soapclient/SforceHeaderOptions.php’); // Salesforce Login information $wsdl = …
-
UPSERT the Salesforce Contact Record using PHP <?php ini_set(“soap.wsdl_cache_enabled”, “0”); // PHP Tool Kit class scripts to login to Salesforce Org require_once (‘../includes/soapclient/SforcePartnerClient.php’); require_once (‘../includes/soapclient/SforceHeaderOptions.php’); // Salesforce Login information $wsdl …
-
Update the Salesforce Contact Record using PHP In PHP Project Folder (PHP_SFDC), Create a new File called updateRecord.php file and save it to www/Htdocs/PHP_SFDC/updateRecord.php path <?php ini_set(“soap.wsdl_cache_enabled”, “0”); // PHP …
-
Integration Between Salesforce and PHP We can easily access the salesforce objects, fields & data using below is tha basic steps to Integration Between Salesforce and PHP. STEP 1: Salesforce …
-
Formatting Salesforce DateTime in php: A set is an unordered collection of elements that do not contain any duplicates. You can use a combination of PHP’s strtotime and date functions. …
-
Apex has the following types of collections: S.No Collection Name Description Example 1 List Ordered collection of typed primitives, sObjects, objects, or collections that are distinguished by their indices // …
-
Annotations are defined with an initial @ symbol, followed by the appropriate keyword. To add an annotation to a method, specify it immediately before the method or class definition. Apex supports the following …