As a subtab of in Service cloud console in Salesforce
"Subtabs of" in Salesforce Lightning and "As a subtab of " in Salesforce Classic is used to decide how records display when they are selected from outside of primary tabs ....
"Subtabs of" in Salesforce Lightning and "As a subtab of " in Salesforce Classic is used to decide how records display when they are selected from outside of primary tabs ....
A Service Cloud console is an app that’s designed for users in fast-paced environments who need to find, update, and create records quickly. It improves on the Console Tab by ....
http://ajanya.com/ http://www.allaboutsfdc.com/ http://www.proprofs.com/quiz-school/search.php?search=dev+401
Sample Code: Visualforce page: <apex:page controller="Sample" sidebar="false" ><apex:pagemessages /><apex:form > <apex:pageblock > <apex:pageBlocksection > <apex:pageblockSectionItem >Name:</apex:pageblockSectionItem> <apex:pageblockSectionItem ><apex:inputtext value="{!nam}" /></apex:pageblockSectionItem> <apex:pageblockSectionItem >Age:</apex:pageblockSectionItem> <apex:pageblockSectionItem ><apex:inputtext value="{!age}" /></apex:pageblockSectionItem> ....
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"> ....