Showing all combinations of two child tables in Celonis PQL Hi Community,I am struggling to reproduce a classic SQL join pattern in Celonis PQL and would appreciate some guidance. ### Data ModelI have an **N:1:M relationship** between three tables:- **Table A** – Material (1 record per material)- **Table B** – SalesOrg-related attributes - N records per material - Foreign key: `B.material_id → A.id`- **Table C** – Plant-related attributes - M records per material - Foreign key: `C.material_id → A.id` ### What I want to achieveFor each material, I want to display **all possible combinations** of SalesOrg and Plant, i.e. the cartesian product of tables B and C per material. ### SQL reference (works as expected)In SQL I would do something like:SELECT A.id, B.org, C.plantFROM ALEFT JOIN B ON A.id = B.material_idLEFT JOIN C ON A.id = C.material_idProblem in Celonis / PQLI simply do not manage to reproduce this in a View via PQL. In particular, I fail to get three columns in a table view (material, org, plant) showing all combinations of B