AppExchange
The Salesforce AppExchange is the destination for great business apps. It is a cloud computing marketplace, developed and hosted by salesforce.com. It was launched in 2005 by salesforce.com. ....
The Salesforce AppExchange is the destination for great business apps. It is a cloud computing marketplace, developed and hosted by salesforce.com. It was launched in 2005 by salesforce.com. ....
A task is an assigned action that needs to be completed by yourself or another user. You can access the on your Home tab. Tasks and Events both ....
Examples for Workflow rules in Salesforce are 1. Email Notification 2. Follow Up or Tracking 3. Updating fields 4. Creating Task 5. Outbound Mail Cheers!!!
1. Get the WSDL. Save it in your local disk. 2. Go to Setup --> App Setup --> Develop --> Apex Classes. 3. Click 'Generate from WSDL'. 4. Browse and ....
Always maintain simplicity in every aspect of your product – from the design, to implementation, even the software process. Stay organized in every part of the project. Proper documentation. Naming ....
Salesforce.com is Sales(CRM) and Service applications which were developed and running on the Force.com Platform. The developed applications will run on the force.com always as a multitenent architecture method. ....
In Salesforce component is a reusable piece of code developed using Visual force and Apex controller. Example: <!-- Page --> <apex:page> <c:myComponent myValue="My component's value" borderColor="red" /> </apex:page> <!-- ....
Triggers are used to perform immediate actions based on the previous action. If declarative workflows or Process Builders don’t meet your specific needs, then it’s time to turn to a ....
Set: A set is an unordered collection of primitives or sObjects that do not contain any duplicate elements. Map: A map is a collection of key-value pairs where ....
In order to get all fields of an Object in Salesforce, getGlobalDescribe() and getDescribe() from the Schema class can be utilized or we can query the FieldDefinition entity. Sample Code: ....