Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2023 04:31 AM
Hi Vika
Thank for the Reply on my Query.
My Issue Resolved by adding the below code. the Code was taken from the below URL.
Solved: how can I load created and created by fields from ... - ServiceNow Community
When you create a Transform Map, uncheck 'Run Business Rules'
- Click run script and try the following script:
(function transformRow(source, target, map, log, isUpdate) { target.autoSysFields(false); target.setWorkflow(false); })(source, target, map, log, action==="update");
Thanks
Praveen