Hello Celonis users,
Good day. There is no chance for me to change anything in the data model and I mainly work in PQL Editor. My goal is to use fields from N-side tables to filter data and visualize it.
More details:
Data model: Table A N] → 1] Table B a1] ← N] Table C
Table A:
Material code Warehouse Procurement type
1 Australia External
1 USA Own produced
2 UK Own produced
2 USA Others
3 Austrialia External
3 UK Own produced
Table B
Material code Responsible
1 Martin
2 Mary
3 Julia
Table C
Material code Distribution center Transportation
1 Austrilia See
1 USA Railway
2 UK Airline
2 USA Airline
3 Austrilia Railway
3 UK See
I would like to find out materials that are not own produced and not transported through airline and railways. Therefore I created a filter using the code below:
FILTER BIND_FILTERS (“Table B”,
“Table A”. “Procurement type” != ‘Own produced’,
“Table B”.”Transportation” NOT IN (‘Airline’, ‘Railway’)
Though Celonis doesn’t show any syntax errors after executing this code, this filter cannot filter out unnecessary data at all.
Is there any way to fix this issue? Besides, I would be very appreciative if you can share your idea of visualizing “Material code”, “Procurement type” and “Transportation” in the same table.
Many thanks in advance!