Hi All,
we have to implement the below where conditions in the set analysis.
where source_system='SR' and source_objects not like '%MRP%' and source_objects like '%FOS%' and Transaction_Type<>'Post2Pre' and Flg_Partial_Churn=0
My set expression is :
Count({< Transaction_Type =- {"Post2Pre"}, Flg_Partial_Churn = {0},Source_Objects = {"FOS"},
Source_Objects =- {"MRP"},Source_Objects -= {"= index(Source_Objects,'MRP+FOS')>0"} >}Source_Subscription_Id)
There is a value in the source_objects column which is MRP+FOS which should be avoided.
conditions : Source_Objects should include FOS and Avoid MRP and also should avoid FOS+MRP combinations as well.
Thanks much in advance.