Question
Filter on current status or Activity
Dear Team,
We are trying to create a dashboard with different KPIs. We have a scenario that we would like to filter in cuirrent status of the order. When we try to use Case ends with then there could be still some activites happening after that status and thus we dont see the results.
Also, we would like to filter as an OR condition on multiple activities.
FILTER MATCH_ACTIVITIES ( _CEL_O2C_ACTIVITIES.ACTIVITY_EN, NODE_ANY [ CRM Order: Released, CRM Order: Open, CRM Order: In process ] ) = 1;
FILTER MATCH_ACTIVITIES ( _CEL_O2C_ACTIVITIES.ACTIVITY_EN, NODE [ CRM Order Item: Contains Errors ] ) = 1;
FILTER CRMD_ORDERADM_H.PROCESS_TYPE in (ZTA, ZFD);
In nut shell we want all the orders which are in Open, In process or released and contains error for certain process types.
We are missing on how to apply filter on activities? Can someone help here?
Thanks
Naveen Gupta
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
KPI formula : COUNT(DISTINCT(VBAK.VBELN))
What we wanted to achieve is only look for Orders which are
in error so we planned for putting a component Filter like below now. Or the Syntax which you provide.
FILTER MATCH_ACTIVITIES ( _CEL_O2C_ACTIVITIES.ACTIVITY_EN,
NODE_ANY [ CRM Order: Released, CRM Order: Open, CRM Order: In process ] ) = 1;
FILTER MATCH_ACTIVITIES ( _CEL_O2C_ACTIVITIES.ACTIVITY_EN,
NODE [ CRM Order Item: Contains Errors ] ) = 1;
FILTER CRMD_ORDERADM_H.PROCESS_TYPE in (ZTA, ZFD);
Is there any other smarter way of doing this?
Thanks
Regards
Naveen Gupta