Hello,
I would ask you a question. My task was to create quick report, which will retrieve only those items, which dont have any superior items (part => Component Where Used) , this is my SQL code:
“SELECT b.part_no, a.component_part, b.description
FROM INVENTORY_PART b
FULL JOIN MANUF_STRUCTURE a ON a.component_part = b.part_no
WHERE b.part_no IS NOT NULL AND a.component_part IS NULL
ORDER BY b.part_no ”
and I have SQL query which will retrieve those items which have superior items:
“SELECT b.part_no, a.component_part, b.description
FROM INVENTORY_PART b
FULL JOIN MANUF_STRUCTURE a ON a.component_part = b.part_no
WHERE b.part_no IS NOT NULL AND a.component_part IS NOT NULL
ORDER BY b.part_no”
According to the IFS cloud, item with part_no = M001541 has no parent part (superior item), but in SQL had 3 superior items.