How to turn off Update Reminder in Salesforce?
To turn off Update Reminder in Salesforce, kindly follow the below steps 1. Your Name --> Setup --> App Setup --> Customize --> Opportunities --> Update reminders. 2. Click edit ....
To turn off Update Reminder in Salesforce, kindly follow the below steps 1. Your Name --> Setup --> App Setup --> Customize --> Opportunities --> Update reminders. 2. Click edit ....
Apex Code: global class MemberNameCheck { webservice static void check(ID memId) { Member__c mem = [SELECT Name from Member__c WHERE Id =: memId]; if(mem.Name == 'Test') { mem.Name = 'Test ....
In Assignment Rule Entries in Salesforce, if the first rule is satisfied, rest of the rules will be checked.Consider the below example Rule 1:If Case Reason contains 'Other' and Case Description ....
Public groups: Only administrators can create public groups. They can be used by everyone in the organization. Public Groups can be used for sharing purposes. Personal groups: Each user can ....
The console is a tab that combines related records into one screen with different frames so that users have all the information they need when interacting with Salesforce. Common tasks ....
Sample Code: Visualforce pages: Template: <apex:page > <apex:outputText >Welcome to Accord</apex:outputText><br/><br/> <apex:insert name="header"/><br/><br/> <apex:outputtext >We are Pioneer in training students</apex:outputtext><br/><br/> <apex:insert name="body"/><br/><br/> <apex:outputtext >Thank You</apex:outputtext></apex:page> Sample: <apex:page sideBar="false"> <apex:composition template="Template"> ....
1. I have an account object, I have a status field which has open and completed checkboxes, when ever I click on completed, I want an opportunity to be created ....
1. Can you tell me brief introduction about your profile technically regarding to project?2. In which module have you worked, say sales module or service module?3. Can you brief me ....
Problem: Solution: 1. Give the Report Folder access to all users. 2. Add individual users as recipients in the Schedule Future Runs. 3. Finally re-restrict the Report Folder access ....
Sample Code: Visualforce Page: <apex:page showHeader="true"> <apex:enhancedList type="Account" rowsPerPage="25" height="500" width="1000"/></apex:page> Output: