Bills of Material Level1 Items SQL
Use the below SQL to list Level1 Components/Sub-Assemblies for the Assembly. select a.segment1 COMP_Item, a.description Comp_Descr, a.inventory_item_status_code Comp_Status, a.item_type,d.segment1 ASSY_ITEM, d.description Assy_Descr, d.inventory_item_status_code Assy_Statusfrom mtl_system_items_b a,bom_components_b b,bom_structures_b c,mtl_system_items_b dwhere 1 = 1and a.inventory_item_id = b.component_item_idand a.organization_id = c.organization_idand b.disable_date is nulland b.bill_sequence_id = c.common_bill_sequence_idand d.inventory_item_id = c.assembly_item_idand d.organization_id = c.organization_idand d.segment1 = ‘SB68415’and d.organization_id = … Read more