Export>import the import set and example row(s) to process:
run the following in a background script to make the import set transform ready, after which you can click into the import set and click the 'transform' UI action:
var grIS=new GlideRecord('sys_import_set');
if (grIS.get('sys_id', '591a97331b40b0d06542dce3b24bxxxx')){//--replace with your import set sysid
grIS.state= 'loaded';
grIS.sys_import_state='pending';
grIS.update();
}
Comments
Post a Comment