Meriem
2 years agoNew Contributor II
Updating Salesforce contact object and Account Lookup
Hello, We are trying to upsert contact object in Salesforce. All fields supported by contact object are well update but the field PHE_ACC_tech_ERP_number__c which is an external ID on the account ...
- 2 years ago
From the error screen, I can see that the PFN_CON_tech_id_erp__c is causing the issue.
You can perform following actions:
- Salesforce API: Try to Upsert in REST API mode instead Bulk, and check if you will get the same error.
- Check Field Name: Make sure that the field names you're trying to upsert match exactly with the field names in Salesforce.
- Permissions: Verify that the fields you're trying to upsert are visible and accessible to the user performing the operation.
- Data Type: Ensure that the data type of the field you're trying to upsert match the data type defined in Salesforce.
Hope this will helps!