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
RupBRupB 

Data Loader not loading string constants for Opportunity

Hi,

I am quite experienced with the Data Loader, but I am stuck, here.

I would like to load Opportunities from a CSV file, including a few fields as constants, so my SDL mapping file includes the following lines :

 

"Order"= Name

"Parts Order"= StageName

"1"= Probability

 

The error message I get is : 2 required fields not inserted : [Name, StageName]. According to the logs, Probability is interpreted correctly, but not Name and neither StageName.

 

Strange, no ?   As it seems to be a string problem, and I am on a French system, I was wondering whether there might be a string/UTF-thing issue, although I tried dataAccess.readUTF8 = "TRUE" also.

 

Any ideas ?