How to display account related contacts in salesforce lightning component

Salesforce Lightning Component to Display Contacts Related to particular Account public with sharing class AjinkyaTestLightningAccController. { @AuraEnabled. public static list<Contact> getRelatedList(Id recordId) { List<Contact> Conlist = [Select id, name,firstname,lastname from Contact where AccountId=: recordId ]; More items… How to use @auraenabled in Salesforce component? Use notation “@AuraEnabled” so that it is available in our component. … Read more

How to display account related contacts in salesforce

Salesforce Lightning Component to Display Contacts Related to particular Account public with sharing class AjinkyaTestLightningAccController. { @AuraEnabled. public static list<Contact> getRelatedList(Id recordId) { List<Contact> Conlist = [Select id, name,firstname,lastname from Contact where AccountId=: recordId ]; More items… How to relate contact to multiple accounts in Salesforce? Here are the steps you will need to go … Read more

How to disable security token in salesforce

How do I disable security token in Salesforce? Login to www. salesforce .com. Click Setup. Under Administration Setup > Security Controls > Network Access. Click “New” Enter “Start IP Address” and “End IP Address” to specify the Trusted IP Ranges for machines you want to access Salesforce without having to use the security token. Login … Read more

How to disable multi factor authentication in salesforce

You can disable multi–factor authentication for your specific users. 1. Click “Settings” then click “Users and Accounts.” 2. Locate the user you wish to disable multi–factor authentication for then click “Edit.” Disable the Two-Factor Authentication for Profiles: Click Setup | In the Quick find type: Profiles. Click Profiles | Click Edit beside the desired profile … Read more

How to disable lightning in salesforce

From Setup, enter Session Settings in the Quick Find box, then select Session Settings. Review the default settings for Lightning Login. Make sure that Allow Lightning Login is enabled. You can disable Allow… Make sure that Allow Lightning Login is enabled. You can disable Allow Lightning Login at any time to switch users back… More … Read more

How to disable developer console in salesforce

Select DELETE. This will delete the workspace Re-open Developer Console You will see that menus are available. Choose an existing workspace or create a new workspace If you disable “View Setup and Configuration ” to hide setup then”View all data” will also get disabled. and this is disabling the devloper console as well as “View … Read more

How to develop salesforce applications

How to Create Salesforce Application 1.Log into https://salesforce.com/ using the valid credentials. The Setup option can be found in the top right corner, and we must click on it to get the build options. By navigating to Build -> Create –> Apps, we can get existing apps and make new ones. When you select the … Read more

How to deploy workflow rules in salesforce

Steps To Reproduce: Create a workflow rule with a workflow email alert and workflow field update on the Account object. Create a package. xml file listing each of the elements individually in WorkflowRule, WorkflowAlert, WorkflowFieldUpdate, metadata types. Retrieve the metadata. … Deploy the workflow to another org. Oct 28, 2020 How to create a workflow … Read more

How to deploy using workbench salesforce

Salesforce: Deploy Unmanaged Package with Workbench Navigate to Setup | Create | Packages Click New button and enter a Package Name From Components tab, click Add to add Components to deploy Repeat step 3 until all components added No need to Upload the package 1:51 3:33 HOWTO: Deploy components to Salesforce using Workbench YouTube Start … Read more