hiding tabs /related list based on workspace view
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2023 09:58 AM - edited ‎06-12-2023 10:58 AM
How to hide tab/related list like user or device allocation in software asset workspace.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2023 10:47 AM - edited ‎06-12-2023 10:48 AM
Create UI Policy for the form with condition as your requirement.
To hide the related list Add the below code in the Execute if True script section.
g_form.hideRelatedList('related_list_table_name');
To show the related list Add the below code in the Execute if False script section.
g_form.showRelatedList('related_list_table_name');
Please mark reply as Helpful/Correct, if applicable.
Thanks,
Siddharam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2023 10:55 AM - edited ‎06-12-2023 11:10 AM
 
 
Hello @Sid_Takali : Thanks for quick response.
I need to create this condition on software asset workspace view which is not oob , unable to find the condition as how to give for this workspace. I need to know how to give condition on workspace.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2023 11:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-12-2023 11:08 AM
hi @Sid_Takali its for table software entitlement(alm_license).Thanks.