DBA Data[Home] [Help]

APPS.CZ_BOM_SYNCH dependencies on MTL_SYSTEM_ITEMS_VL

Line 511: lastConcatSegments mtl_system_items_vl.concatenated_segments%TYPE := NULL;

507: localString VARCHAR2(2000);
508: bomQuantity NUMBER;
509: nodeQuantity NUMBER;
510:
511: lastConcatSegments mtl_system_items_vl.concatenated_segments%TYPE := NULL;
512: itemConcatSegments mtl_system_items_vl.concatenated_segments%TYPE;
513: itemInventoryId mtl_system_items.inventory_item_id%TYPE;
514: itemCatalogGroupId mtl_system_items.item_catalog_group_id%TYPE;
515:

Line 512: itemConcatSegments mtl_system_items_vl.concatenated_segments%TYPE;

508: bomQuantity NUMBER;
509: nodeQuantity NUMBER;
510:
511: lastConcatSegments mtl_system_items_vl.concatenated_segments%TYPE := NULL;
512: itemConcatSegments mtl_system_items_vl.concatenated_segments%TYPE;
513: itemInventoryId mtl_system_items.inventory_item_id%TYPE;
514: itemCatalogGroupId mtl_system_items.item_catalog_group_id%TYPE;
515:
516: billSequenceId bom_bill_of_materials.bill_sequence_id%TYPE;

Line 760: ' FROM bom_bill_of_materials' || targetLinkName || ' b, mtl_system_items_vl' || targetLinkName || ' i' ||

756: BEGIN
757:
758: EXECUTE IMMEDIATE
759: 'SELECT b.bill_sequence_id, b.common_bill_sequence_id, i.inventory_item_id, i.item_catalog_group_id' ||
760: ' FROM bom_bill_of_materials' || targetLinkName || ' b, mtl_system_items_vl' || targetLinkName || ' i' ||
761: ' WHERE i.concatenated_segments = :1' ||
762: ' AND i.organization_id = :2' ||
763: ' AND b.assembly_item_id = i.inventory_item_id' ||
764: ' AND b.organization_id = i.organization_id' ||

Line 819: ' FROM mtl_system_items_vl' || targetLinkName || ' i, bom_inventory_components' || targetLinkName || ' b' ||

815: OPEN getBillChildren FOR
816: 'SELECT i.inventory_item_id, i.concatenated_segments, b.effectivity_date, b.disable_date, b.component_quantity,' ||
817: ' b.component_sequence_id, b.high_quantity, b.low_quantity, b.mutually_exclusive_options,' ||
818: ' b.bom_item_type, b.optional, i.item_catalog_group_id' ||
819: ' FROM mtl_system_items_vl' || targetLinkName || ' i, bom_inventory_components' || targetLinkName || ' b' ||
820: ' WHERE b.bill_sequence_id = :1' ||
821: ' AND b.implementation_date IS NOT NULL' ||
822: ' AND i.organization_id = :2' ||
823: ' AND (b.optional = :3 OR b.bom_item_type <= :4)' ||