How to create standard ‘New’ button on Visualforce page? Please follow the below instructions: <apex:outputLink value=”{!URLFOR($Action.Account.New)}”>Create New Account</apex:outputLink> use the same way to other objects (both Standard/Custom Objects) to change …
Salesforce
- SALESFORCESalesforce CustomizationVisualforce
- SALESFORCESalesforce CustomizationVisualforce
How to use the Salesforce (SFDC) Standard Icons on Visualforce page?
How to use the Salesforce (SFDC) Standard Icons on Visualforce page? need to use a relative path to the icons: <img src=”/img/func_icons/util/pencil12.gif”/> standard icons click the below link: SFDC Standard …
-
How do Query Queue Id, Name in Salesforce Apex? Queues are stored as a Group SObject: For Example: Group groupDetail = [SELECT Id, Name, DeveloperName, Email, Type FROM Group where …
- Data LoaderSALESFORCESalesforce Interview QuestionsSalesforce.com
Salesforce Interview questions and answers Users, Profiles, Role and Permission Sets
Salesforce Interview questions and answers Users, Profiles, Role and Permission Sets Profiles and Permission Sets provides security for meta-data (Structure) components. 1. What is Profile? Profile deals with CRED (Create, …
- Data LoaderSALESFORCESalesforce Interview QuestionsSalesforce.com
Salesforce Interview questions and answers for Import Wizard and Data Loader
Salesforce Interview questions and answers for Import Wizard and Data Loader 1. What is Import wizard? Import wizard is a web based tool to process bulk records. With import wizard …
- SALESFORCESalesforce Interview QuestionsSalesforce.com
Salesforce Interview questions and answers for Reports and Dashboard
Salesforce Interview questions and answers for Reports and Dashboard? 1. What is Report? To summarize the information of an object we use reports. 2. What are the types of Reports? …
- SALESFORCESalesforce Interview QuestionsSalesforce.com
what are the different types of reports available in Salesforce
what are the different types of reports available in Salesforce? Different types of reports available in Salesforce are Tabular report: It displays the grand total in the table form Matrix report: It …
- SALESFORCESalesforce Interview QuestionsSalesforce.com
what is the difference between SOQL and SOSL in Salesforce
what is the difference between SOQL and SOSL in Salesforce? SOQL ( Salesforce Object Query Language) SOSL (Salesforce Object Search Language) Only one object at a time can be …
- SALESFORCESalesforce Interview QuestionsSalesforce.com
what is the difference between force.com and Salesforce.com
what is the difference between force.com and Salesforce.com? Force.com is PaaS (Platform as a Service) while Salesforce.com is SaaS ( Software as a Service).
- SALESFORCESalesforce Interview QuestionsSalesforce.com
what is the difference between isNull and isBlank in Salesforce
what is the difference between isNull and isBlank in Salesforce? isNull: It supports for number field isBlank: It supports for Text field