Skip to main content

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:

NameTypeDefaultDescription
@sObjectVARCHARRequiredTable to generate the template for
@dialectNVARCHAR'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'