How do I add a fields that are only visible to fulfillers not customers in catalog item?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2018 03:13 PM
I need to add fields that are visible to fulfillers and not customers in catalog item?
- Labels:
-
Service Catalog

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-15-2018 07:10 PM
Use an onLoad Catalog Client script like this:
function onLoad() {
var itilUser = g_user.hasRole('itil');
if (itilUser){
//g_form.addInfoMessage('Itil User Check passed.');
g_form.setVisible('assignment_group', true);
}
else {
g_form.setVisible('assignment_group', false);
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2024 04:46 AM
i have implemented the same requirement where i have to show an MRVS to fulfillment team only , for this i implemented the UI policy applied on the catalog item view and in UI policy action i made MRVS variables visibility as false .