Catalog UI Policies are not being successfully implemented on a catalog itemIssue When the same variables are being used in multiple Catalog UI policies then multiple catalog UI policy actions are implemented on the variables as different conditions are met at the same timeReleaseMadridCauseSame variables are being used in multiple Catalog UI Policies.ResolutionIn this case, there are 4 UI Policies implemented as below -- hides A, B, C when the variable choice is none.-- hides B, C when the variable choice is A.-- hides A, C when the variable choice is B.-- hides A, B when the variable choice is C.and all the UI policies have "reverse if false" option checked.This results like when "none" is selected A, B, C are hidden based on the first UI policy but as "reverse if false" is selected all the 3 below UI policies are also implemented and the variable sets are visible again. In the same pattern, it works with every other choice.In order to resolve the issue, the UI policies must be constructed in the below format.-- hides A, B, C when the variable choice is none and "reverse if false" is unchecked.-- Display A when the variable choice is A and "reverse if false" is checked.-- Display B when the variable choice is B and "reverse if false" is checked.-- Display C when the variable choice is C and "reverse if false" is checked.