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: l_remain_qty NUMBER := 0; -- Fix bug 13826369
293: l_job_name VARCHAR2(240);
294: begin

Line 393: -- to non-standard job.

389: l_jobStatus := wip_constants.released; --make sure the job status gets flipped back to released
390: l_cplDate := NULL;
391: end if;
392: -- Fixed bug 3678776. We should allow user to overreturn assembly back
393: -- to non-standard job.
394: if(abs(p_cplRec.priQty) > l_qtyCompleted AND
395: l_jobType = WIP_CONSTANTS.STANDARD) then
396: fnd_message.set_name('WIP', 'WIP_LESS_OR_EQUAL');
397: fnd_message.set_token('ENTITY1', 'total txn qty-cap', true);

Line 395: l_jobType = WIP_CONSTANTS.STANDARD) then

391: end if;
392: -- Fixed bug 3678776. We should allow user to overreturn assembly back
393: -- to non-standard job.
394: if(abs(p_cplRec.priQty) > l_qtyCompleted AND
395: l_jobType = WIP_CONSTANTS.STANDARD) then
396: fnd_message.set_name('WIP', 'WIP_LESS_OR_EQUAL');
397: fnd_message.set_token('ENTITY1', 'total txn qty-cap', true);
398: fnd_message.set_token('ENTITY2', 'job complete quantity', true);
399: fnd_msg_pub.add;