An external object with the API name Phone_Plan__x does not exist Salesforce Trailhead challenge
1. Go to External Objects. 2. Edit both the objects to change the API names as below. Cheers!!!
1. Go to External Objects. 2. Edit both the objects to change the API names as below. Cheers!!!
The Assistant is a smart list of things to do today, featuring a blended set of tasks and opportunities that need your attention. Looking at our to-do list, we see ....
An alias is a short name to identify the user on list pages, reports, or other places where their entire name doesn't fit. By default, the alias is the first ....
We can use Live agent chat transcript. A live chat transcript is a record of a chat between a visitor and a live chat agent. Salesforce creates a transcript automatically ....
Use the below code: Controller Code: ({ getCase: function(cmp){ var action = cmp.get("c.getCaseFromId"); action.setCallback(this, function(response){ ....
Use the below codes Component Code: <aura:component > <ui:inputNumber aura:id="InputOne"/> <ui:inputNumber aura:id="InputTwo"/> <ui:inputNumber aura:id="InputThree"/> <ui:outputNumber aura:id="totalValue"/> <aura:handler name="init" value="{!this}" action="{!c.calculate}"/> </aura:component> Controller ....
Use the below codes Component Code: <aura:component > <ui:inputNumber aura:id="InputOne"/> <ui:inputNumber aura:id="InputTwo"/> <ui:inputNumber aura:id="InputThree"/> <ui:outputNumber aura:id="totalValue"/> <aura:handler name="init" value="{!this}" action="{!c.calculate}"/> </aura:component> Controller ....
Use the below code Component Code: <aura:component> <aura:registerEvent name="message" type="c:PhoneNumberEvent"/> <aura:handler event="c:PhoneNumberEvent" action="{!c.answer}"/> <aura:attribute name="number" type="String" default="No Phone Number"/> <ui:outputText aura:id="phone" value="{!v.number}"/> ....
Use the below Controller Code: ({ send : function(component, event, helper) { var phone = component.find("phone").get("v.value"); console.log(phone); $A.get("event.c:PhoneNumberEvent").setParams({ ....
To auto populate Name field in Salesforce, follow the below steps 1. Create a Visuaforce page similar to this below code. Sample Visualforce page: <apex:page standardController="Employee__c" action="/a0A/e?RecordType={!$CurrentPage.parameters.RecordType}&Name=[Will+be+filled+automatically]&cancelURL={!$CurrentPage.parameters.retURL}&nooverride=1" /> Replace a0A with your object. To ....