


While following these directions: CRM Connectors I was able to get the connectivity between AC7 and Salesforce working.
The workflow always inserts the export into Salesforce. I would like to update the data in salesforce. How do i accomplish an update instead of a insert/create new like I have working today.
Views
Replies
Sign in to like this content
Total Likes
florentlb, what are your thoughts?
Views
Replies
Sign in to like this content
Total Likes
Hi Clarence,
CRM Connectors works on upsert soap method exposed by salesforce.
Read more: Salesforce Developers
This method Creates new records and updates existing records; uses a custom field to determine the presence of existing records. In most cases, we recommend that you use upsert() instead of create() to avoid creating unwanted duplicate records (idempotent). Available in the API version 7.0 and later.
What this means: you need not worry about insert or update as this method will take care of that for you.
How will this work in adobe campaign?
all you have to do is ensure that your sfdc object have external id and you are passing a correct value from Adobe campaign activity.
Example: Campaign member object in salesforce needs below id to work
@sfdcCampaignId CampaignId
@sfdcLeadId LeadId
rest you can pass any value that you need to update. CampaignId is used as external id.
Regards,
Amit
Views
Replies
Sign in to like this content
Total Likes
Amit_Kumar we tried this, and it is not working. The workflow still inserts the data back into Salesforce. Do you have any other suggestions?
Is there a difference in the CRM Connector vs the Salesforce
Views
Replies
Sign in to like this content
Total Likes