Posts

Showing posts with the label import

Salesforce Fact #937 | Dynamic import of LWC

Image
With the Winter'24 release, we can use dynamic import for LWC components. Few things to keep a check: 1) The api version of the LWC should be >= 55.0 2) Lightning Web Security must be enabled in session settings. 3) The XML config file should use the lightning__dynamicComponent capability. However, we need to consider the performance overhead while using dynamic import and should use it selectively. Attached are the screenshots of an example. Reference:  https://developer.salesforce.com/docs/platform/lwc/guide/js-dynamic-components.html

Salesforce Fact #901 | Few things to consider while using Data Import Wizard

Here are two things to keep in mind while importing records with Data Import Wizard: 1) The fields available for mapping is based on the layout of the selected record type and the field level security of the user. 2) While importing records we need to select a checkbox named 'Trigger workflow rules and processes for new and updated records' in order to trigger the automations in place for that object. Reference:  https://help.salesforce.com/s/articleView?id=000387837&language=en_US&type=1

Salesforce Fact #755 | Create contacts and add to campaigns in Import Wizard

We can create contacts and add them to the campaigns at the same time using Import Wizard. For this, we need to select the checkbox, 'Assign All Contacts to Campaigns' and include the fields: Campaign Id and Member status in the csv file. Once the import is completed, a separate email is sent out with the campaign member record details. Reference:  https://help.salesforce.com/s/articleView?id=sf.campaigns_import_contacts_new.htm&type=5