- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2023 04:53 AM
Hello Community,
We have a requirement to map the field of Multi Row Variable set values to the custom table fields.
I am using the below code in record producer to map the multi-row variable set field 'Name and Number' to the field of a table extended from case.
Code is working but i am getting the field name as well along with value. and also how to get the Only values mapped to the table field in row wise like if multiple entries are there
PS: I'm using string field type in custom table.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2023 01:00 AM
@Janu sree Tried and tested solution. Please use below code
ServiceNow Community Rising Star, Class of 2023

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2023 05:10 AM
Thank you,
Ali
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2023 04:55 AM
@Ankur Bawiskar Kindly assist here

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2023 04:59 AM
Hello @Janu sree
Try below script:
Thank you,
Ali
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2023 12:37 AM
Thanks for the reply,
I tried its working but Is there any possibility to get the value into the table with numbers.
like 1.english
2.British
3. Spanish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2023 12:45 AM
You can prefix array index before pushing the string value to the array as below:
arr.push(i + ". " + parsedData[i].name_var_set + "");
Thank you,
Ali