Courseiva
Service Catalog And Request ManagementhardMultiple ChoiceObjective-mapped

CIS-ITSM Service Catalog And Request Management Practice Question

An administrator created a Multi-Row Variable Set (MRVS) and wants to populate a field on the target task using the data collected in the MRVS rows. Since MRVS stores data as a JSON string, what is the best way to extract and process this data in a workflow script?

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Parse the JSON string using JSON.parse(current.variables.mrvs_name) in a Run Script activity and iterate through the resulting array.

Using JavaScript's JSON.parse() on current.variables.mrvs_variable_name allows iterating through the array of objects in a workflow script.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Dot-walk directly to current.variables.mrvs_name.column_name in the task activity.

    Why it's wrong here

    Dot-walking directly to columns in an MRVS fails because MRVS stores rows as a serialized JSON string collection.

  • Use a Record Producer script to flatten the MRVS into custom table rows automatically.

    Why it's wrong here

    MRVS is used in catalog items, not typically record producers, and requires explicit script parsing.

  • Configure a Catalog UI Policy to export MRVS rows to the sys_variable_value table.

    Why it's wrong here

    UI policies cannot export data to backend tables in this manner.

  • Parse the JSON string using JSON.parse(current.variables.mrvs_name) in a Run Script activity and iterate through the resulting array.

    Why this is correct

    JSON.parse() converts the MRVS string into a workable JavaScript object array for script processing.

About these practice questions

Courseiva writes every CIS-ITSM question from scratch — 500 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written and reviewed by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

Last reviewed August 2026 · checked against the official ServiceNow exam blueprint

This CIS-ITSM practice question is part of Courseiva's free ServiceNow certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CIS-ITSM exam.