DWQA QuestionsHow to list the Items which has Embed View/Filters in its Description
Amita Gupta Staff asked 6 years ago

I want to know all the items where embed Filter/Views is used

2 Answers
Amita Gupta Staff answered 6 years ago

In order to find all the Items where Embed view is used, create a View with the user defined criteria
(obj_description like ‘%FILTER_%’)
Use the same View for all Items

Amita Gupta Staff answered 6 years ago

In addition, if you want to filter the Items in which the Embed View/Filter does not have the current Project version than add the Condition (obj_version <> [QMV]) to the above criteria
So, the Complete user-defined criteria for such case:
(obj_description like ‘%FILTER_%’) and (obj_version <> [QMV])