DBA Data[Home] [Help]

APPS.WIP_CPLPROC_PRIV dependencies on STANDARD

Line 290: -- to non-standard job.

286: l_logLevel NUMBER := fnd_log.g_current_runtime_level;
287: l_docType NUMBER;
288: oc_primary_qty NUMBER; -- Fix BUG 4869979 (FP 5107900)
289: -- Fixed bug 3678776. We should allow user to overreturn assembly back
290: -- to non-standard job.
291: l_jobType NUMBER;
292: begin
293: if (l_logLevel <= wip_constants.trace_logging) then
294: fillCplParamTbl(p_cplRec => p_cplRec,

Line 370: -- to non-standard job.

366: l_jobStatus := wip_constants.released; --make sure the job status gets flipped back to released
367: l_cplDate := NULL;
368: end if;
369: -- Fixed bug 3678776. We should allow user to overreturn assembly back
370: -- to non-standard job.
371: if(abs(p_cplRec.priQty) > l_qtyCompleted AND
372: l_jobType = WIP_CONSTANTS.STANDARD) then
373: fnd_message.set_name('WIP', 'WIP_LESS_OR_EQUAL');
374: fnd_message.set_token('ENTITY1', 'total txn qty-cap', true);

Line 372: l_jobType = WIP_CONSTANTS.STANDARD) then

368: end if;
369: -- Fixed bug 3678776. We should allow user to overreturn assembly back
370: -- to non-standard job.
371: if(abs(p_cplRec.priQty) > l_qtyCompleted AND
372: l_jobType = WIP_CONSTANTS.STANDARD) then
373: fnd_message.set_name('WIP', 'WIP_LESS_OR_EQUAL');
374: fnd_message.set_token('ENTITY1', 'total txn qty-cap', true);
375: fnd_message.set_token('ENTITY2', 'job complete quantity', true);
376: fnd_msg_pub.add;