- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 09:30 PM
Hi All,
I have a record producer with multi row variable set. On submitting of record producer a case will be created. I have a requirement to show/hide the multi row variable set on variable editor based on assignment group of the case. Any suggestions how can I achieve this? I tried to use g_form.setDisplay('variables.varblesetName', false), but not working as expected.
Thanks,
Gopi
Thanks,
Gopi
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 10:07 PM - edited 12-12-2023 10:09 PM
Hi @Gopi Naik1 The below script will hide the multi row var set
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 10:24 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 09:45 PM
Hi @Gopi Naik1 ,
Create Catalog UI Policy and make condition assignment group as ABC . The Catalog UI Policy to be created at Catalog Item (not the MRVS Level). You will see the Internal Name of MRVS appear as a variable in Catalog UI Policy Action make it to visible false.
Mark it as helpful and solution proposed if it serves your purpose.
Thanks,
Anand
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 09:59 PM
Hi @Anand Kumar P ,
Thanks for your response. My requirement is to hide based on assignment group of Target record. Assignment group is not a variable on catalogue, it's field on target record. I don't think we can access target table fields on catalogue ui policy condition.
Thanks,
Gopi
Thanks,
Gopi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 10:22 PM - edited 12-12-2023 10:41 PM
Hi @Gopi Naik1 ,
For that you have to write client script assignment group depends on your criteria then if assignment group is ABC then make it visible false.
if(assignmentgroup=='ABC')
{
g_form.setDisplay('variable_set_name',false);
}
Thanks,
Anand

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 10:07 PM - edited 12-12-2023 10:09 PM
Hi @Gopi Naik1 The below script will hide the multi row var set
Harish