DBA Data[Home] [Help]

APPS.OE_LINE_UTIL dependencies on MTL_PARAMETERS

Line 2909: FROM mtl_parameters

2905: IF p_x_line_rec.ship_from_org_id IS NOT NULL AND
2906: p_x_line_rec.ship_from_org_id <> FND_API.G_MISS_NUM THEN
2907: SELECT wms_enabled_flag
2908: INTO l_wms_org_flag_new
2909: FROM mtl_parameters
2910: WHERE organization_id= p_x_line_rec.ship_from_org_id;
2911: END IF;
2912: IF p_old_line_rec.ship_from_org_id IS NOT NULL AND
2913: p_old_line_rec.ship_from_org_id <> FND_API.G_MISS_NUM THEN

Line 2916: FROM mtl_parameters

2912: IF p_old_line_rec.ship_from_org_id IS NOT NULL AND
2913: p_old_line_rec.ship_from_org_id <> FND_API.G_MISS_NUM THEN
2914: SELECT wms_enabled_flag
2915: INTO l_wms_org_flag_old
2916: FROM mtl_parameters
2917: WHERE organization_id= p_old_line_rec.ship_from_org_id;
2918: END IF;
2919: IF l_debug_level > 0 THEN
2920: oe_debug_pub.add('l_wms_org_flag_new:'|| l_wms_org_flag_new);