What is the use of List View in Salesforce?
1. We can filter records 2. We can Edit the record 3. We can print from the list Cheers!!!
1. We can filter records 2. We can Edit the record 3. We can print from the list Cheers!!!
Contact: People who work for your Customers, Affiliates or Prospects. Contact Role: A contact role defines the part that a contact or person account plays in a specific account, ....
Sample Test Class: @isTestprivate class testClass{ static testMethod void test() { Member__c m = new Member__c(); m.Name = 'Sample'; m.Email_Address__c = 'Your email address'; m.Age__c = 25; insert m; memberApproval.callApproval(m.Id); ....
Siebel CRM Oracle CRM Clarify CRM Chordiant CRM Clarity CRM Mircrosoft Dynamics CRM Salesforce.com CRM Veeva CRM Zoho CRM Sophos CRM Vtiger CRM Cheers!!!
1. Where and why exactly we go for for data loader? a. If a person leaves a company, we can transfer his/records to others using data loader. b. If we ....
On-Demand Email-to-Case: On-Demand Email-to-Case uses Apex email services to convert email to cases. Steps for implementing On-Demand Email-to-Case: 1. Define email addresses on your email system for case submissions.2. Create ....
Jump Start Wizard Jump Start Wizard allows single approval step Setup. Many Approval Setup steps are skipped. With few clicks, the Approval Process can be setup. Standard Approval Process Wizard ....
Batch Class: global class opptyDetails implements Database.Batchable<sobject>{ global Database.QueryLocator start(Database.BatchableContext bc) { String soql = 'SELECT Opportunity.Name, Opportunity.OrderNumber__c, Opportunity.Approval_Status__c, Contact.Email, Contact.Name, Contact.Level__c FROM OpportunityContactRole'; return Database.getQueryLocator(soql); } global void ....
Sample Query: SELECT Id, Opportunity.Name, Opportunity.OrderNumber__c, Opportunity.Approval_Status__c, Contact.Email, Contact.Name FROM OpportunityContactRole Output: Cheers!!!