DBA Data[Home] [Help]

APPS.OE_LINE_UTIL dependencies on MTL_PARAMETERS

Line 3471: FROM mtl_parameters

3467: IF p_x_line_rec.ship_from_org_id IS NOT NULL AND
3468: p_x_line_rec.ship_from_org_id <> FND_API.G_MISS_NUM THEN
3469: SELECT wms_enabled_flag
3470: INTO l_wms_org_flag_new
3471: FROM mtl_parameters
3472: WHERE organization_id= p_x_line_rec.ship_from_org_id;
3473: END IF;
3474: IF p_old_line_rec.ship_from_org_id IS NOT NULL AND
3475: p_old_line_rec.ship_from_org_id <> FND_API.G_MISS_NUM THEN

Line 3478: FROM mtl_parameters

3474: IF p_old_line_rec.ship_from_org_id IS NOT NULL AND
3475: p_old_line_rec.ship_from_org_id <> FND_API.G_MISS_NUM THEN
3476: SELECT wms_enabled_flag
3477: INTO l_wms_org_flag_old
3478: FROM mtl_parameters
3479: WHERE organization_id= p_old_line_rec.ship_from_org_id;
3480: END IF;
3481: IF l_debug_level > 0 THEN
3482: oe_debug_pub.add('l_wms_org_flag_new:'|| l_wms_org_flag_new);