Hide choice from variable dependant on look up select box type variable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2023 11:40 PM
Hi team,
we have a variable named product domain which is lookup select box type reference to business capability table and lookup value field is parent.
When we select Utilities Product in Product domain or onload when Utilities product is coming, we need to hide Planned work from the categories.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2023 01:42 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2023 01:44 AM
function onChange(control, oldValue, newValue, isLoading) {
Please mark helpful if this solution is of help for you

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2023 04:04 AM
@Kunal33 You can choose to create a UI Policy on your Catalog item/Record producer and in the condition field check
Product Domain is Utilities Product
The advantage of using UI Policy over client script is you do not have to define two separate client scripts onLoad and onChange. A single UI Policy would cater to your need.
Hope this helps.