DBA Data[Home] [Help]

APPS.WIP_OP_RESOURCES_UTILITIES dependencies on WIP_CONSTANTS

Line 376: if ((((cur_opres.scheduled_flag = wip_constants.sched_prior) OR (cur_opres.scheduled_flag = wip_constants.sched_next)) AND (last_scheduled_flag <> wip_constants.sched_no))

372: error_exists := true;
373: -- simultaneous resources: if one resource is Prior/Next, the others must also have the same
374: -- scheduling flag
375: elsif (last_scheduled_flag <> cur_opres.scheduled_flag) then
376: if ((((cur_opres.scheduled_flag = wip_constants.sched_prior) OR (cur_opres.scheduled_flag = wip_constants.sched_next)) AND (last_scheduled_flag <> wip_constants.sched_no))
377: OR (((last_scheduled_flag = wip_constants.sched_prior) OR (last_scheduled_flag = wip_constants.sched_next)) AND (cur_opres.scheduled_flag <> wip_constants.sched_no))) then
378: FND_MESSAGE.SET_NAME('WIP', 'SIM_RES_SAME_PRIOR_NEXT');
379: FND_MESSAGE.set_token( token => 'OP_SEQ',
380: value=> to_char(cur_op.operation_seq_num),

Line 377: OR (((last_scheduled_flag = wip_constants.sched_prior) OR (last_scheduled_flag = wip_constants.sched_next)) AND (cur_opres.scheduled_flag <> wip_constants.sched_no))) then

373: -- simultaneous resources: if one resource is Prior/Next, the others must also have the same
374: -- scheduling flag
375: elsif (last_scheduled_flag <> cur_opres.scheduled_flag) then
376: if ((((cur_opres.scheduled_flag = wip_constants.sched_prior) OR (cur_opres.scheduled_flag = wip_constants.sched_next)) AND (last_scheduled_flag <> wip_constants.sched_no))
377: OR (((last_scheduled_flag = wip_constants.sched_prior) OR (last_scheduled_flag = wip_constants.sched_next)) AND (cur_opres.scheduled_flag <> wip_constants.sched_no))) then
378: FND_MESSAGE.SET_NAME('WIP', 'SIM_RES_SAME_PRIOR_NEXT');
379: FND_MESSAGE.set_token( token => 'OP_SEQ',
380: value=> to_char(cur_op.operation_seq_num),
381: translate => FALSE);