<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: MVRS in HRSD forum</title>
    <link>https://www.servicenow.com/community/hrsd-forum/mvrs/m-p/3489361#M45009</link>
    <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/574258"&gt;@montoyb1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope you are doing good.&lt;/P&gt;
&lt;P&gt;Did my reply answer your question?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; If my response helped, please mark it as correct &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; and close the thread &lt;span class="lia-unicode-emoji" title=":locked:"&gt;🔒&lt;/span&gt;— this helps future readers find the solution faster! &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 15 Feb 2026 06:37:10 GMT</pubDate>
    <dc:creator>Ankur Bawiskar</dc:creator>
    <dc:date>2026-02-15T06:37:10Z</dc:date>
    <item>
      <title>MVRS</title>
      <link>https://www.servicenow.com/community/hrsd-forum/mvrs/m-p/3482756#M44819</link>
      <description>&lt;P&gt;Hello, is there a way that I can do MVRS dynamically to change depending on the topic selected in a select box in a record producer&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2026 15:32:50 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/mvrs/m-p/3482756#M44819</guid>
      <dc:creator>montoyb1</dc:creator>
      <dc:date>2026-02-05T15:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: MVRS</title>
      <link>https://www.servicenow.com/community/hrsd-forum/mvrs/m-p/3488702#M44994</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/574258"&gt;@montoyb1&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MRVS can be handled the same way as a simple variable. &lt;STRONG&gt;Catalog UI Policy&lt;/STRONG&gt; and/or &lt;STRONG&gt;Catalog Client&lt;/STRONG&gt; scripts, depending on the nature of what exactly you want to achieve.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In both there's "&lt;STRONG&gt;Applies to&lt;/STRONG&gt;" field, select Variable set and associate with the desired (MR)VS to proceed:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="GlideFather_0-1770976194552.png" style="width: 999px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/501596iE057764969C7A035/image-size/large?v=v2&amp;amp;px=999" role="button" title="GlideFather_0-1770976194552.png" alt="GlideFather_0-1770976194552.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 09:50:31 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/mvrs/m-p/3488702#M44994</guid>
      <dc:creator>GlideFather</dc:creator>
      <dc:date>2026-02-13T09:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: MVRS</title>
      <link>https://www.servicenow.com/community/hrsd-forum/mvrs/m-p/3488729#M44995</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/574258"&gt;@montoyb1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use the onChange client script for changing mrvs depending on the topic selected in a select box,&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;function onChange(control, oldValue, newValue, isLoading) {
	if (isLoading || newValue == '') {
		return;
	}

        if (newValue == 'true') {
	
	        var obj = JSON.parse(g_form.getValue('mrvs_1')); //get values from MRVS1
	        var nObj = []; //blank array
	
	        for (var i=0; i &amp;lt; obj.length; i++) { //iterate through obj
                var ft = obj[i].field_type;
		        var name = obj[i].name;
		        var noo = obj[i].number_of_options;
		
		        if (ft == 'check-box' || ft == 'drop-down') { //check the field_type
			        for (var i2=0; i2 &amp;lt; noo; i2++) { //repeat for the number of options required
				        nObj.push({
					        field_name: name //push field_name into an array
				        });
				        g_form.setValue('mrvs_2', JSON.stringify(nObj)); //set the values in MRVS2
			        }
		        }
	        }
	}
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If my response helped mark as helpful and accept the solution.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 10:19:06 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/mvrs/m-p/3488729#M44995</guid>
      <dc:creator>yashkamde</dc:creator>
      <dc:date>2026-02-13T10:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: MVRS</title>
      <link>https://www.servicenow.com/community/hrsd-forum/mvrs/m-p/3488743#M44996</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/574258"&gt;@montoyb1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if you are saying you want to add/remove rows to/from MRVS based on other variable, then yes it's feasible.&lt;/P&gt;
&lt;P&gt;You write client script on your select box variable and then form array of json objects and set that in MRVS&lt;/P&gt;
&lt;P&gt;I have shared solution in below link, check that and enhance as per your requirement&lt;/P&gt;
&lt;P style="box-sizing: border-box; margin: 0px; font-family: ServiceNowSansRegular; color: #1d1d1d; font-size: 14px; font-style: normal; font-variant-ligatures: none; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ffffff; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"&gt;&lt;A style="box-sizing: border-box; text-decoration: underline; background-color: transparent; color: #007393; font-size: inherit; font-family: ServiceNowSansRegular;" href="https://community.servicenow.com/community?id=community_question&amp;amp;sys_id=49054211db672890b1b102d5ca9619b0" target="_blank" rel="noopener noreferrer"&gt;How to populate Requestor Details in variables of MRVS?&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; If my response helped, please mark it as correct &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; and close the thread &lt;span class="lia-unicode-emoji" title=":locked:"&gt;🔒&lt;/span&gt;— this helps future readers find the solution faster! &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Feb 2026 10:29:44 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/mvrs/m-p/3488743#M44996</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2026-02-13T10:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: MVRS</title>
      <link>https://www.servicenow.com/community/hrsd-forum/mvrs/m-p/3489361#M45009</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/574258"&gt;@montoyb1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope you are doing good.&lt;/P&gt;
&lt;P&gt;Did my reply answer your question?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; If my response helped, please mark it as correct &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; and close the thread &lt;span class="lia-unicode-emoji" title=":locked:"&gt;🔒&lt;/span&gt;— this helps future readers find the solution faster! &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Feb 2026 06:37:10 GMT</pubDate>
      <guid>https://www.servicenow.com/community/hrsd-forum/mvrs/m-p/3489361#M45009</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2026-02-15T06:37:10Z</dc:date>
    </item>
  </channel>
</rss>

