- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2018 03:02 PM
I am trying to transfer groups between our instances (create new group or update an existing group). I am using transform map as XML format (using XML data source). I am also using sys_id as coalesce. If I am updating any groups with different fields from source instance, I am able to update target instance as expected without affecting any sys_ids. If I insert new group in source instance, I can retrieve that group in target instance, but problem is on target instance its generating with different sys_id. It's not bringing same sys_id (as information) as other fields. How can I retrieve its sys_id as well from source without generating new sys_id to target.
Note: I am trying this as alternative of importing/exporting XML as automated.
Thanks
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2018 04:44 PM
Hi Ecelik,
Create an On Before Transform script with the script as
if (action == "insert"){
target.setNewGuidValue(source.u_sys_id);
}
Thanks,
Pradeep Sharma

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2018 04:44 PM
Hi Ecelik,
Create an On Before Transform script with the script as
if (action == "insert"){
target.setNewGuidValue(source.u_sys_id);
}
Thanks,
Pradeep Sharma
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2018 12:41 PM
Thanks a lot Pradeep Sharma,
I didn't know that this issue has a simple solution!