Heroku Enterprise
Heroku Enterprise is part of the Salesforce Platform, a multi-cloud app platform. That's quite a mouthful! We just mean that the Salesforce Platform ties together many tools and services into ....
Heroku Enterprise is part of the Salesforce Platform, a multi-cloud app platform. That's quite a mouthful! We just mean that the Salesforce Platform ties together many tools and services into ....
Sample SOQL: SELECT QualifiedApiName FROM EntityDefinition ORDER BY QualifiedApiName Output:
1. Go to File Upload and Download Security. Lightning Experience: Classic: 2. Click Edit button. Do the changes and click Save button. Specify what happens when users attempt to download specific ....
Sample Code: <apex:page setup="true"> Test Page </apex:page> Output:
1. Go to Profile. 2. Click Edit in About Me Section. 3. Enter your name or fancy title for your profile link.
Use CustomObject as the name for deploying Platform Events using Apache ANT tool in Salesforce Sample package.xml: <types> <members>EventName__e</members> <name>CustomObject</name> </types>
Sample Code: CreateAccountComponent.cmp <aura:component implements="flexipage:availableForAllPageTypes"> <lightning:button label="Create Account" variant="brand" onclick="{!c.createAccount}"/> </aura:component> CreateAccountComponentcontroller.js ({ createAccount: function (component) { var createRecordEvent = $A.get('e.force:createRecord'); ....
SOQL: SELECT Id, Name FROM UserRole WHERE PortalType = 'None' Output:
Represents a responsive grid system for arranging containers on a page. A lightning:layout is a flexible grid system for arranging containers within a page or inside another container. The default ....
Lightning Component: <aura:component access="global"> <ui:inputSelect aura:Id="makeId" multiple="false" label="Select Make"> <ui:inputSelectOption label="Acura" text="acura" value="true"/> <ui:inputSelectOption label="Audi" text="Audi"/> <ui:inputSelectOption ....