
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2020 08:29 AM
HI All.
I need to copy all variables from a catalog item(portal form) to sc_task description field. there for i'm using the next business rule (along a client script) which works OK except for list collectors. I'm getting a sys_id as value if catalog items are containing a list collector.
This is the BR code which I use to copy variables to task description:
Can someone please help me with this script so I can convert list collector sys_id's to display value?
(function executeRule(current, previous /*null when async*/) {
//Initialize the scratchpad variable
g_scratchpad.varJSON = '';
var type, name, value, reference, val, item;
//Check to see if a variable pool exists
var count = 0;
for(vars in current.variable_pool){
count++;
break;
}
//If a variable pool exists then collect variable names and values
if(count > 0){
var varJSON = {};
var table = current.getTableName();
//Catalog item and task variables pull from 'sc_item_option_mtom' table
if(table == 'sc_req_item' || table == 'sc_task'){
var itemVars = new GlideRecord('sc_item_option_mtom');
if(table == 'sc_req_item'){
itemVars.addQuery('request_item', current.sys_id);
}
if(table == 'sc_task'){
itemVars.addQuery('request_item', current.request_item.sys_id);
}
//Exclude Label and Container variables
itemVars.addQuery('sc_item_option.item_option_new.type', '!=', 11);
itemVars.addQuery('sc_item_option.item_option_new.type', '!=', 19);
itemVars.addQuery('sc_item_option.item_option_new.type', '!=', 20);
// Set Order
itemVars.orderBy('sc_item_option.order');
itemVars.query();
while(itemVars.next()){
//Add variable names and values to the varJSON object
type = itemVars.sc_item_option.item_option_new.type.toString();
name = itemVars.sc_item_option.item_option_new.question_text.toString();
val = itemVars.sc_item_option.value.toString();
// Reference
if (type == 😎 {
reference = itemVars.sc_item_option.item_option_new.reference.toString();
value = getReferenceDisplayValue(reference,val);
}
// Select Box
else if (type == 5) {
item = itemVars.sc_item_option.item_option_new.sys_id;
value = getChoiceDisplayValue(item, val);
}
// Default
else {
value = val;
}
// Replace blank values with [None]
if (value == '') {
value = '[None]';
}
varJSON[name] = value;
}
}
//All other variables pulled from 'question_answer' table
else{
var producerVars = new GlideRecord('question_answer');
producerVars.addQuery('table_sys_id', current.sys_id);
//Exclude Label and Container variables
producerVars.addQuery('question.type', '!=', 11);
producerVars.addQuery('question.type', '!=', 19);
producerVars.addQuery('question.type', '!=', 20);
producerVars.addQuery('question.type', '!=', 24);
// Set Order
producerVars.orderBy('order');
producerVars.query();
while(producerVars.next()){
//Add variable names and values to the varJSON object
type = producerVars.question.type.toString();
name = producerVars.question.question_text.toString();
val = producerVars.value.toString();
// Reference
if (type == 😎 {
reference = producerVars.question.reference.toString();
value = getReferenceDisplayValue(reference,val);
}
// Select Box
else if (type == 5) {
item = producerVars.question.sys_id;
value = getChoiceDisplayValue(item,val);
}
// Default
else {
value = val;
}
// Replace blank values with [None]
if (value == '') {
value = '[None]';
}
varJSON[name] = value;
}
}
// Convert varJSON into a string and store the result in the scratchpad
g_scratchpad.varJSON = JSON.stringify(varJSON);
}
// Function to convert reference value to display value
function getReferenceDisplayValue(table,value) {
var displayValue1 = '';
var gr1 = new GlideRecord(table);
gr1.addQuery('sys_id',value);
gr1.query();
if (gr1.next()) {
displayValue1 = gr1.getDisplayValue();
}
return displayValue1;
}
// Function to convert choice value to display value
function getChoiceDisplayValue(item_option,value) {
var displayValue2 = '';
var gr2 = new GlideRecord('question_choice');
gr2.addEncodedQuery('question=' + item_option + '^value=' + value);
gr2.query();
if (gr2.next()) {
displayValue2 = gr2.text + '';
}
return displayValue2;
}
})(current, previous);
Thanks in advance.
Solved! Go to Solution.
- Labels:
-
Request Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2020 08:50 AM
Hi there,
Not sure if you already fixed your issue because it's a few days back. Though just noticed your question:
You do mention List Collector. If I look at out-of-the-box, that's type 21. You don't have a type 21 in your script.
Be aware: List collector is sys_id comma seperated. So using gr.variables.list_collector_name will just give you sys_ids. You could use gr.variables.list_collector_name.getDisplayValue().
Reading your question, I also noticed you are using a Business Rule and Client Script? Your Business Rule also contains code for Catalog Items (sc_item_option etc) and also for Record Producers (question_answer). While your question looks to be about Catalog Item with Catalog Tasks?
If so, here just some scripting for free 🙂 Maybe this can simplify your case.
Sample workflow:
On the Catalog Task utility, apply script:
var descriptionStr = 'Summary of ' + current.getDisplayValue() + ': ' + current.cat_item.getDisplayValue() + '\n\n';
var grVariableRelation = new GlideRecord('sc_item_option_mtom');
grVariableRelation.addQuery('request_item', current.getUniqueValue());
grVariableRelation.addNotNullQuery('sc_item_option.value');
grVariableRelation.orderBy('sc_item_option.order');
grVariableRelation._query();
while(grVariableRelation._next()) {
descriptionStr += grVariableRelation.sc_item_option.item_option_new.getDisplayValue() + ': ' + current.variables[grVariableRelation.sc_item_option.item_option_new.name].getDisplayValue() + '\n';
}
task.description = descriptionStr;
Note: There is a 1-sec Timer in the workflow, this is on purpose for timing issues. If the workflow would proceed immediately to the Catalog Task utility, when running the script, the Variables might not be available yet.
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~400 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2020 08:43 AM
Hi,
If the type of variable is of type list then pick up the reference table; query it with those sys_ids and then get the display value
Mark ✅ Correct if this solves your issue and also mark 👍 Helpful if you find my response worthy based on the impact.
Thanks
Ankur
Ankur

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2020 08:50 AM
Hi there,
Not sure if you already fixed your issue because it's a few days back. Though just noticed your question:
You do mention List Collector. If I look at out-of-the-box, that's type 21. You don't have a type 21 in your script.
Be aware: List collector is sys_id comma seperated. So using gr.variables.list_collector_name will just give you sys_ids. You could use gr.variables.list_collector_name.getDisplayValue().
Reading your question, I also noticed you are using a Business Rule and Client Script? Your Business Rule also contains code for Catalog Items (sc_item_option etc) and also for Record Producers (question_answer). While your question looks to be about Catalog Item with Catalog Tasks?
If so, here just some scripting for free 🙂 Maybe this can simplify your case.
Sample workflow:
On the Catalog Task utility, apply script:
var descriptionStr = 'Summary of ' + current.getDisplayValue() + ': ' + current.cat_item.getDisplayValue() + '\n\n';
var grVariableRelation = new GlideRecord('sc_item_option_mtom');
grVariableRelation.addQuery('request_item', current.getUniqueValue());
grVariableRelation.addNotNullQuery('sc_item_option.value');
grVariableRelation.orderBy('sc_item_option.order');
grVariableRelation._query();
while(grVariableRelation._next()) {
descriptionStr += grVariableRelation.sc_item_option.item_option_new.getDisplayValue() + ': ' + current.variables[grVariableRelation.sc_item_option.item_option_new.name].getDisplayValue() + '\n';
}
task.description = descriptionStr;
Note: There is a 1-sec Timer in the workflow, this is on purpose for timing issues. If the workflow would proceed immediately to the Catalog Task utility, when running the script, the Variables might not be available yet.
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~400 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2020 08:51 AM
Also just tested to verify:
If my answer helped you in any way, please then mark it as helpful.
Kind regards,
Mark
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~400 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2020 05:07 AM
Hi Mark,
Thanks Mark. With you help I was able to resolve this issue. So applying it directly from the workflow and not the BR. As we discussed this we had some issues with containers and with a slightly change to script above and adding lines to excluding containers we were able to get things done.
Many thanks for you time and effort on this.
We were able to exclude the containers by adding these lines to above scripts.
Credits to
grVariableRelation.addQuery('sc_item_option.item_option_new.type', '!=', 19);
grVariableRelation.addQuery('sc_item_option.item_option_new.type', '!=', 20);
grVariableRelation.addQuery('sc_item_option.item_option_new.type', '!=', 24);