• Aaron Maternowski
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
i am using dataloder batch mode.
i have extracted contact adresses and passed them through another proces to clean the addresses. now i want to pass them back to salesforce.

i have my csv
i have a mapping file that works when i run it interactively
i have done my best to create the update bean in the process-conf.xml as ther eis no update exapmle.

when i run the batch update I get the error below for every record in my csv.
Error code is:MISSING_ARGUMENT
Error message:Id not specified in an update call
the csv and the mapping file work when i run it interactively, which tells me my issue must be my pross-conf bean?

here is that:
   <bean id="homeAddressUpdateProcess"
          class="com.salesforce.dataloader.process.ProcessRunner"
          singleton="false">
      <description>Home Address Update job gets the Address record updates from a CSV file and uploads them to salesforce using 'update'.</description>
        <property name="name" value="homeAddressUpdate"/>
        <property name="configOverrideMap">
            <map>
                <entry key="sfdc.endpoint" value="..."/>
                <entry key="sfdc.username" value="..."/>
                <entry key="sfdc.password" value="..."/>
                <entry key="process.encryptionKeyFile" value="D:\MONITORING\DataLoader\CONF\key.txt"/>
                <entry key="sfdc.timeoutSecs" value="600"/>
                <entry key="sfdc.loadBatchSize" value="200"/>
                <entry key="process.operation" value="update"/>
                <entry key="process.mappingFile" value="D:\MONITORING\DataLoader\MAPPING\homeAddressUpdateMap.sdl"/>
                <entry key="dataAccess.name" value="D:\MONITORING\DataLoader\INBOUND\homeAddressExtract.out.csv"/>
                <entry key="dataAccess.type" value="csvRead"/>
                <entry key="sfdc.entity" value="Contact"/>
                <entry key="process.initialLastRunDate" value="2006-12-01T00:00:00.000-0800"/>
        <entry key="process.statusOutputDirectory" value="D:\MONITORING\DataLoader\LOGS\" />
        <entry key="process.outputSuccess" value="D:\MONITORING\DataLoader\LOGS\homeAddressUpdate_success.csv"/>
        <entry key="process.outputError" value="D:\MONITORING\DataLoader\LOGS\homeAddressUpdate_error.csv"/>
            </map>
        </property>
    </bean>
any thoughts on this would be most helpful.
 
i am using dataloder batch mode.
i have extracted contact adresses and passed them through another proces to clean the addresses. now i want to pass them back to salesforce.

i have my csv
i have a mapping file that works when i run it interactively
i have done my best to create the update bean in the process-conf.xml as ther eis no update exapmle.

when i run the batch update I get the error below for every record in my csv.
Error code is:MISSING_ARGUMENT
Error message:Id not specified in an update call
the csv and the mapping file work when i run it interactively, which tells me my issue must be my pross-conf bean?

here is that:
   <bean id="homeAddressUpdateProcess"
          class="com.salesforce.dataloader.process.ProcessRunner"
          singleton="false">
      <description>Home Address Update job gets the Address record updates from a CSV file and uploads them to salesforce using 'update'.</description>
        <property name="name" value="homeAddressUpdate"/>
        <property name="configOverrideMap">
            <map>
                <entry key="sfdc.endpoint" value="..."/>
                <entry key="sfdc.username" value="..."/>
                <entry key="sfdc.password" value="..."/>
                <entry key="process.encryptionKeyFile" value="D:\MONITORING\DataLoader\CONF\key.txt"/>
                <entry key="sfdc.timeoutSecs" value="600"/>
                <entry key="sfdc.loadBatchSize" value="200"/>
                <entry key="process.operation" value="update"/>
                <entry key="process.mappingFile" value="D:\MONITORING\DataLoader\MAPPING\homeAddressUpdateMap.sdl"/>
                <entry key="dataAccess.name" value="D:\MONITORING\DataLoader\INBOUND\homeAddressExtract.out.csv"/>
                <entry key="dataAccess.type" value="csvRead"/>
                <entry key="sfdc.entity" value="Contact"/>
                <entry key="process.initialLastRunDate" value="2006-12-01T00:00:00.000-0800"/>
        <entry key="process.statusOutputDirectory" value="D:\MONITORING\DataLoader\LOGS\" />
        <entry key="process.outputSuccess" value="D:\MONITORING\DataLoader\LOGS\homeAddressUpdate_success.csv"/>
        <entry key="process.outputError" value="D:\MONITORING\DataLoader\LOGS\homeAddressUpdate_error.csv"/>
            </map>
        </property>
    </bean>
any thoughts on this would be most helpful.