hiding tabs /related list based on workspace view

servicenow14710
Tera Expert

How to hide tab/related list like user or device allocation in software asset workspace.

Thanks.

6 REPLIES 6

Hi @servicenow14710 if you want to hide a related list on a particular view add the below script in UI Policy in the Execute if True script section.

 

var view = getView();
if (view == 'workspace'){   
 g_form.hideRelatedList('related_list_table_name'); 
}  

 

Please mark reply as Helpful/Correct, if applicable.

Thanks,

Siddharam

It's not working