Closed (fixed)
Project:
Salesforce Suite
Version:
6.x-2.0-beta2
Component:
sf_import
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
9 May 2012 at 04:58 UTC
Updated:
24 May 2012 at 04:50 UTC
I got a question, after a node is linked to a Salesforce lead, and then the Lead is manually converted to a Contact in Salesforce, will this change be sent back to the module and update the mapping table?
If this feature is not supported by this module, is there any way to accomplish this?
Thanks in advance.
Comments
Comment #1
kostajh commentedThere's currently nothing in the Suite to handle this. You will need to write a custom module that implements the pre_import and post_export hook. In your post_export hook you'll want something like this (note I've defined constants for my fieldmap names):
In pre_import hook you'll want something like this:
Comment #2
kurtzhong commentedThank you very much, this helps a lot.