DBA Data[Home] [Help]

APPS.WSM_MES_UTILITIES_PVT dependencies on BOM_OPERATION_SEQUENCES

Line 538: FROM BOM_OPERATION_SEQUENCES BOS, WIP_OPERATIONS WO

534: begin
535: IF (l_routing_op_seq_num IS NOT NULL) THEN
536: SELECT nvl(BOS.use_org_settings, 1), nvl(BOS.run_mandatory_flag, 0), nvl(BOS.to_move_mandatory_flag, 0)
537: INTO l_op_use_org_settings, l_op_run_mandatory_flag, l_op_to_move_mandatory_flag
538: FROM BOM_OPERATION_SEQUENCES BOS, WIP_OPERATIONS WO
539: WHERE WO.wip_entity_id = p_wip_entity_id
540: AND WO.operation_seq_num = p_job_op_seq_num
541: AND BOS.operation_sequence_id = WO.operation_sequence_id;
542: ELSE