Lightning Message Service (LMS) is generally available from Summer ’20 onwards, In this post & video to sharing how we can leverage it to communicate between Visualforce and Lightning Components…
Visualforce
-
-
How to Replace String Values in Visualforce Page SUBSTITUTE – new text for old text in a text string. Example: {!SUBSTITUTE(Lead.Company, ” “, “”)} //Remove the Space in Lead Company {!SUBSTITUTE(Account.Name, “”, “”)} //Remove dot value in Account Nmae <apex:outputText value=”{! SUBSTITUTE(…
- Email TemplateSALESFORCESalesforce CustomizationSalesforce.comVisualforce
How to fetch Contact details from Opportunity Contact Roles using SOQL in Salesforce?
How to fetch Contact details from Opportunity Contact Roles using SOQL in Salesforce? SOQL QUERY: SELECT Id, Opportunity.Name, Contact.Email, Contact.Name, Role, isPrimary FROM OpportunityContactRole Where OpportunityId =’OpportunityID’ Here: OpportunityID –…
- Email TemplateSALESFORCESalesforce CustomizationSalesforce.comVisualforce
How to get the Primary Opportunity Contact Role Information in Salesforce Email Template?
How to get the Primary Opportunity Contact Role Information in Salesforce Email Template? Its possible using the Visualforce Email Template and below is the Visualforce Email Template Code Salesforce Email…
- Email TemplateSALESFORCESalesforce CustomizationSalesforce.comVisualforce
How to get the Opportunity Contact Role details in Salesforce Email Template?
How to get the Opportunity Contact Role details in Salesforce Email Template? This is not possible in normal email template Text or HTML (using Letterhead) or Custom (without using Letterhead).…
- APEXSALESFORCESalesforce CustomizationSalesforce.comVisualforce
How to set the default Account Owner Value in Visualforce using Apex Class?
How to set the default Account Owner Value in Visualforce using Apex Class? If you only want this defaulting to happen when the Visualforce page is used you can use…
- APEXSALESFORCESalesforce CustomizationSalesforce.comVisual ForceVisualforce
How to access custom labels dynamically in visualforce page?
How to access custom labels dynamically in visualforce page? No, you can’t reference labels dynamically in apex. However, you can reference them dynamically from visualforce so you can put them…
- APEXSALESFORCESalesforce CustomizationSalesforce.comSOQLVisualforce
How to get the logged in User Profile Name using Apex Class
How to get the logged in User Profile Name using Apex Class? We can able to get the profile details using the Profile Standard Object SOQL Query: Select Id, Name…
- APEXSALESFORCESalesforce CustomizationSalesforce.comSOQLVisualforce
How to get the Role name and Profile Name from User Object using SOQL
How to get the Role name and Profile Name from User Object using SOQL We can able to get the Role Name and Profile Name details from User Standard Object…
- APEXSALESFORCESalesforce CustomizationSalesforce.comVisualforce
How to get the apex:inputText fields values into the apex controller class from visualforce page?
How to get the apex:inputText fields values into the apex controller class from visualforce page? VF page having some apex:inputText fields and one custom button and on clicking of the…