DBA Data[Home] [Help]

APPS.MSC_GET_BIS_VALUES dependencies on MSC_BOM_COMPONENTS

Line 68: from msc_bom_components mbc

64: AND mbis.sr_instance_id = l_instance_id
65: AND mbis.plan_id = l_plan_id
66: AND nvl(mbis.period_type,0) = 0 --mbis.mfg period changes
67: and exists ( select 1
68: from msc_bom_components mbc
69: where mbc.organization_id = mbis.organization_id
70: AND mbc.sr_instance_id = mbis.sr_instance_id
71: AND mbc.plan_id = mbis.plan_id
72: and mbc.inventory_item_id = mbis.inventory_item_id

Line 86: from msc_bom_components mbc

82: FROM msc_bis_inv_detail mbis
83: where mbis.plan_id = l_plan_id
84: AND nvl(mbis.period_type,0) = 0 --mbis.mfg period changes
85: and exists ( select 1
86: from msc_bom_components mbc
87: where mbc.organization_id = mbis.organization_id
88: AND mbc.sr_instance_id = mbis.sr_instance_id
89: AND mbc.plan_id = mbis.plan_id
90: and mbc.inventory_item_id = mbis.inventory_item_id

Line 111: from msc_bom_components mbc

107: AND nvl(mbis.period_type,0) = 0 --mbis.mfg period changes
108: and mbis.detail_date between v_start_date and v_end_date
109: AND mbis.plan_id = l_plan_id
110: and exists ( select 1
111: from msc_bom_components mbc
112: where mbc.organization_id = mbis.organization_id
113: AND mbc.sr_instance_id = mbis.sr_instance_id
114: AND mbc.plan_id = mbis.plan_id
115: and mbc.inventory_item_id = mbis.inventory_item_id

Line 132: from msc_bom_components mbc

128: where mbis.detail_date between v_start_date and v_end_date
129: AND mbis.plan_id = l_plan_id
130: AND nvl(mbis.period_type,0) = 0 --mbis.mfg period changes
131: and exists ( select 1
132: from msc_bom_components mbc
133: where mbc.organization_id = mbis.organization_id
134: AND mbc.sr_instance_id = mbis.sr_instance_id
135: AND mbc.plan_id = mbis.plan_id
136: and mbc.inventory_item_id = mbis.inventory_item_id

Line 2124: ' from msc_bom_components mbc ' ||

2120: if p_product_family_id is not null then
2121: where_stat := where_stat ||
2122: ' AND EXISTS '||
2123: ' (select 1 '||
2124: ' from msc_bom_components mbc ' ||
2125: ' where mbc.organization_id = mbis.organization_id '||
2126: ' and mbc.sr_instance_id = mbis.sr_instance_id '||
2127: ' and mbc.plan_id = mbis.plan_id ' ||
2128: ' and mbc.inventory_item_id = mbis.inventory_item_id '||