I want to do flow filter based on condition i.e. "('Assignee Group' = "XYZ") and ('Assignee' != $NULL$)". The same search condition filter in Remedy, But this condition cannot be used in ConnectAll.
How should this condition be written in ConnectAll?
Component: BMC Remedy
Release: 2.11.X, 3.X
Search condition unable to filter due to invalid configuration. The $NULL$ is BMC Remedy variable and not available/accessible within ConnectAll.
As per the document BMC Remedy: Null Values in Relational Algebra for Relational algebra and qualifications involving NULL values, the condition should be something like below
"('Assignee Group' = "XYZ") and ('Assignee' != NULL)"