DBA Data[Home] [Help]

APPS.GML_OPM_OM_CONV_MIG_PKG dependencies on MTL_PARAMETERS

Line 121: mtl_parameters mtl

117: schedule_status_code,
118: 'OE' source,
119: ordered_quantity qty -- added for debug only
120: FROM oe_order_lines_all ol,
121: mtl_parameters mtl
122: WHERE ol.ship_from_org_id = mtl.organization_id
123: AND mtl.process_enabled_flag = 'Y' AND
124: NVL(ol.shipping_interfaced_flag,'N')= 'N'
125: UNION ALL

Line 134: mtl_parameters mtl

130: to_char(NULL) schedule_status_code,
131: 'WDD' source,
132: 0 qty
133: FROM wsh_delivery_details wdd,
134: mtl_parameters mtl
135: WHERE wdd.organization_id = mtl.organization_id
136: AND mtl.process_enabled_flag = 'Y'
137: AND wdd.released_status in ('B','R','S', 'X'); -- 5475003 need to include status X for non inv items
138: