How to create a simple Project and Run in MuleSoft Anypoint studio?
1. Go to File --> New --> Mule Project. 2. Enter a Name and click "Finish" button. 3. Drag and Drop HTTP Listener, Set Payload and Logger from the Mule ....
1. Go to File --> New --> Mule Project. 2. Enter a Name and click "Finish" button. 3. Drag and Drop HTTP Listener, Set Payload and Logger from the Mule ....
Sample Code: Component: <aura:component implements="force:appHostable" controller="AccountListController"> <aura:attribute type = "Account[]" name = "acctList"/> <aura:attribute name = "mycolumns" type = "List"/> <aura:attribute name = "sortedBy" type = "String" default = "Name"/> <aura:attribute name = "sortedDirection" type = "String" default = "asc"/> <aura:handler name = "init" value ="{! this }" action = "{! c.fetchAccounts }"/> <lightning:datatable data = "{! v.acctList }" columns = "{! v.mycolumns }" keyField = "id" hideCheckboxColumn = "true" onsort = "{! c.updateColumnSorting }" sortedBy = "{! v.sortedBy }" sortedDirection = "{! v.sortedDirection }"/> </aura:component> Component Controller: ({ fetchAccounts : function( component, event, helper ) { component.set( 'v.mycolumns', [ {label: 'Account Name', fieldName: 'linkName', type: 'url', sortable: true, ....
Anypoint Studio is used to build and test APIs and integrations with Anypoint Platform’s desktop IDE. Download and setup JAVA: 1. Make sure JAVA is installed. Use java -version to ....
What is Mule? Mule, the runtime engine of Anypoint Platform, is a lightweight Java-based enterprise service bus and integration platform that allows developers to connect applications together quickly and easily, ....
1. Go to Data Manager. 2. Click Create Dataflow in Dataflows & Recipes.
1. Go to Community Builder. 2. Select User Profile page.
Each event message in Salesforce is assigned an opaque ID contained in the ReplayId field. The ReplayId field value, which is populated by the system refers to the position of ....
1. Edit the page layout. 2. Select multiple fields from the page layout by pressing command button. 3. Hover over one of the highlighted fields and click Wrench icon to edit ....
SOQL on the Login History object/entity can be used to find whether users have logged in to the Sandbox. Sample SOQL: SELECT Id, LoginTime, UserId FROM LoginHistory WHERE DAY_ONLY( LoginTime ....
Specify how your organization's sharing rules determine which records the matching rule compares. Enforce sharing rules: The matching rule compares only records that the user has access to, and the ....