User Activity
11-15-2020
Since ServiceNow lacks their documentation...I will have to ask here,
How can I access output variable in a Flow Designer in f(x) function of an Activity?
I have a following Script Step where I am getting Approval group's sys_ids (ie. 3 sys_ids)
After this I would like to use this approvalGroup object where the sys_id's are store in Ask for Approval Action....but it takes only reference fields, so ...
10-27-2020
I have the following array of objects
[{"Device":"Apple","Owner":"Joe Employee"},{"Device":"Microsoft","Owner":"Jack Businessman"},{"Device":"Huawei","Owner":"Patel Employee"}]
and need to insert insert 3 records to my table into fields, Device and ...
I'm trying to create a global variable in a Catalog Client Script, available for all other client scripts to access:
var globalVar = '';
function onLoad() {
var ajax = new GlideAjax('TestScriptInclude');
ajax.addParam('sysparm_name', 'returnPrope...
Can you share an example how to create 3 catalog tasks in workflow assigned to different assignment group? The logic should be:
Create task 1 - assign to group A
only if task 1 is completed
Create task 2 - assign to group B
only if task 2 is complete...