We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

Based on one variable field value how to display another variable field?

Udbhav
Tera Contributor

In Catalog item, Suppose there is a [variable : Gadget ; type : select box].

If I select "mobile" from the given options then only another [variable : company ; type select box]....should appear.

Otherwise it should not be visible. How can I achieve this?

1 ACCEPTED SOLUTION

Harish KM
Kilo Patron

Hi @Udbhav you can do this with UI Policy

Cond: Gadget is Mobile

UI Policy Action: selet variable which you want to show ( set as visible to True)

Regards
Harish

View solution in original post

2 REPLIES 2

Harish KM
Kilo Patron

Hi @Udbhav you can do this with UI Policy

Cond: Gadget is Mobile

UI Policy Action: selet variable which you want to show ( set as visible to True)

Regards
Harish

Udbhav
Tera Contributor

Thank you @Harish KM , it worked.🙂