DBA Data[Home] [Help]

APPS.WIP_MTLTEMPPROC_PRIV dependencies on FND_MSG_PUB

Line 55: fnd_msg_pub.initialize;

51: end if;
52: x_returnStatus := fnd_api.g_ret_sts_success;
53:
54: if(fnd_api.to_boolean(p_initMsgList)) then
55: fnd_msg_pub.initialize;
56: end if;
57:
58: l_retCode := inv_lpn_trx_pub.process_lpn_trx(p_trx_hdr_id => p_txnHdrID,
59: p_proc_mode => p_txnMode,

Line 72: fnd_msg_pub.add;

68: --error message back, but successful txns do not clear the stack
69: if(l_retCode <> 0) then
70: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
71: fnd_message.set_token('MESSAGE', l_errMsg);
72: fnd_msg_pub.add;
73: wip_utilities.get_message_stack(p_msg => x_errorMsg,
74: p_delete_stack => fnd_api.g_false);
75: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
76: else

Line 116: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_mtlTempProc_priv',

112: end if;
113: when others then
114: rollback to wiptmpvb0;
115: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
116: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_mtlTempProc_priv',
117: p_procedure_name => 'processTemp',
118: p_error_text => SQLERRM);
119: wip_utilities.get_message_stack(p_msg => x_errorMsg,
120: p_delete_stack => fnd_api.g_false,

Line 413: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkgName,

409: end if;
410: when others then
411: rollback to wiptmpvb100;
412: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
413: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkgName,
414: p_procedure_name => l_procName,
415: p_error_text => SQLERRM);
416: wip_utilities.get_message_stack(p_msg => x_errorMsg,
417: p_delete_stack => fnd_api.g_false);

Line 468: fnd_msg_pub.initialize;

464: end if;
465: end if;
466:
467: if(fnd_api.to_boolean(nvl(p_initMsgList, fnd_api.g_false))) then
468: fnd_msg_pub.initialize;
469: end if;
470:
471: if(l_numIntRows is null) then
472: select count(*)

Line 516: fnd_msg_pub.initialize;

512: --after inv supports x_trans_count, change if below
513: -- if(l_numTempRows = l_numIntRows) then
514: if(l_numErrRows = 0) then
515: if(fnd_api.to_boolean(nvl(p_initMsgList, fnd_api.g_false))) then
516: fnd_msg_pub.initialize;
517: end if;
518: if(l_logLevel <= wip_constants.trace_logging) then
519: wip_logger.exitPoint(p_procName => g_pkgName || '.' || l_procName,
520: p_procReturnStatus => x_returnStatus,

Line 536: fnd_msg_pub.initialize;

532:
533: if(fnd_api.to_boolean(nvl(p_addMsgToStack, fnd_api.g_true))) then
534: --re-initialize message stack
535: if(fnd_api.to_boolean(nvl(p_initMsgList, fnd_api.g_false))) then
536: fnd_msg_pub.initialize;
537: end if;
538:
539: select msik.concatenated_segments,
540: mti.error_explanation

Line 557: fnd_msg_pub.add;

553: fnd_message.set_token('ERR_MSG', l_errExplTbl(i));
554: if(l_logLevel <= wip_constants.trace_logging) then
555: wip_logger.log('item ' || l_itemNameTbl(i) || ': ' || l_errExplTbl(i), l_retStatus);
556: end if;
557: fnd_msg_pub.add;
558: end loop;
559: end if;
560:
561: if(fnd_api.to_boolean(nvl(p_rollBackOnErr, fnd_api.g_true))) then

Line 600: fnd_msg_pub.add;

596:
597: if(l_msgData is not null) then
598: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
599: fnd_message.set_token('MESSAGE', l_msgData);
600: fnd_msg_pub.add;
601: end if;
602: if(l_logLevel <= wip_constants.trace_logging) then
603: wip_logger.exitPoint(p_procName => g_pkgName || '.' || l_procName,
604: p_procReturnStatus => x_returnStatus,

Line 613: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkgName,

609: end if;
610: end if;
611: when others then
612: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
613: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkgName,
614: p_procedure_name => l_procName,
615: p_error_text => SQLERRM);
616:
617: if(fnd_api.to_boolean(nvl(p_rollBackOnErr, fnd_api.g_true))) then