SLAM_mapping_template
Creates a mapping template ready for copy and paste use in data mapping work. The template is based on the latest field metadata for the object. The list of fields returned represents all fields on the objects, but some attributes may be subject to Salesforce permissions.
Parameters:
| Name | Type | Default | Description |
|---|---|---|---|
@sObject | VARCHAR | Required | Table to generate the template for |
@dialect | NVARCHAR | 'Excel' | Modifies rendering of values for different destinations. Possible values: 'Excel', 'GSheets' |
Usage Examples:
EXEC dbo.SLAM_mapping_template
@sObject = 'Account',
@dialect = 'Excel'
EXEC dbo.SLAM_mapping_template
@sObject = 'Account',
@dialect = 'GSheets'