Run transform in server side script
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-23-2015 12:00 AM
Hello All,
Is there any way to "run transforms" in server side script? any APIs?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-01-2018 12:54 AM
how did you get these methods? any link to documentation?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-01-2018 05:39 AM
i don't thing these methods are documented anywhere, i found out the methods by exploring the SN classes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-08-2017 06:01 PM
Hi Sumeet,
If you have a Scheduled Import, you can do it with the below scripts.
var importset = new GlideRecord('scheduled_import_set');
importset.get('name', 'SCHEDULED-IMPORTSET-NAME');
SncTriggerSynchronizer.executeNow(importset);
Scheduled Import Set - Scheduling Data Imports - ServiceNow Wiki
Hope this helps. Mark the answer as correct/helpful based on impact.
Thanks
Antin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-09-2017 11:05 AM
Thank you Antin I can now work on implementing this for my future importsets. I greatly appreciate the feedback. It has been very helpful for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-17-2018 07:24 AM
how can i run multiple transform maps on a datasource?