function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Raghu Cheruvu 1Raghu Cheruvu 1 

Need the column headers in the exported file to be in lower case apex command line interface

Hi,

I am exporting data using apex data loader CLI. However, the columns in the exported file are all in upper case, even through in the mapping.sdl they are in lower case. 

COLUMN HEADERS Below:-

VEEVA_ID CONTACT_TITLE  CONTACT_FIRST_NAME   CONTACT_LAST_NAME 

below is the sdl which is used:-

Name=veeva_id
contact_title__c=contact_title
Account_vod__r.FirstName=contact_first_name
Account_vod__r.LastName=contact_last_name

i want the column headers of the extracted file to be in lower case, let me know if the column headers can be lower case.