In SAP 8.8, I have the following query that extracts BOM components for parent items:
SELECT T1.[Father], T1.[Code], T1.[Quantity], T1.[Price], T0.[ItemName] FROM OITM T0 INNER JOIN ITT1 T1 ON T0.ItemCode = T1.Code WHERE T1.[Father] =[%0]
However, there are some BOM components that further contain sub-components. The above query does not drill down to the sub-levels. Is there any way I can modify the query to show ALL sub levels? Thanks.