List of Integration Patterns in Salesforce
Below are the List of Integration Patterns in Salesforce: 1. Remote Process Invocation—Request and Reply Salesforce invokes a process on a remote system, waits for completion of that process, and then ....
Below are the List of Integration Patterns in Salesforce: 1. Remote Process Invocation—Request and Reply Salesforce invokes a process on a remote system, waits for completion of that process, and then ....
Individual object represents a customer’s data privacy and protection preferences. Data privacy records based on the Individual object store customer's privacy preferences and are associated with a lead or a ....
Once a synchronous Apex request runs longer than 5 seconds, it begins counting against this limit. Each organization is allowed 10 concurrent long-running requests. If the limit is reached, any ....
Sample Code: Component: <aura:component implements="force:appHostable" controller="OpportunitySearchController"> <aura:attribute name="oppty" type="Opportunity" default="{ 'sobjectType': 'Opportunity'}"/> <aura:attribute name="columns" type="List"/> <aura:attribute name="opportunityList" type="Opportunity[]"/> <aura:attribute name="PaginationList" type="Opportunity[]"/> <aura:attribute name="startPage" type="Integer" /> <aura:attribute name="endPage" type="Integer"/> <aura:attribute name="totalRecords" ....
Sample Code: <aura:component implements="force:appHostable" > <div class="slds-box slds-theme_default"> <lightning:input type="date" label="Date"/> </div> </aura:component> Output:
<force:inputField> can be usedto refer object's fields in Lighting Component. Sample Code: <aura:component implements="force:appHostable"> <aura:attribute name="oppty" ....
AccountList.cmp <aura:component controller="AccountListController" implements="flexipage:availableForAllPageTypes,lightning:actionOverride,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes,force:appHostable" > <aura:attribute type="Account[]" name="acctList"/> <aura:attribute name="mycolumns" type="List"/> <aura:attribute name="sortedBy" type="String" ....
The related list shows record with Name as Hyper Links. Check the below example of Contact record's Case Related List.
Currently, Salesforce is not providing Developer Edition for Marketing Cloud. Unfortunately, there is no work around like trial orgs also. Check the following link and vote for this: https://success.salesforce.com/ideaView?id=08730000000l1yFAAQ Once ....
Sample Code: Component: <aura:component implements="force:appHostable" > <lightning:fileUpload label="Attach receipt" name="fileUploader" multiple="true" accept=".pdf, .png" recordId="0016A00000MneVlQAJ" onuploadfinished="{!c.handleUploadFinished}" /> </aura:component> Controller: ({ handleUploadFinished: function (cmp, event) { var uploadedFiles = event.getParam("files"); alert("Files uploaded"); ....