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 374: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkgName,

370: end if;
371: when others then
372: rollback to wiptmpvb100;
373: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
374: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkgName,
375: p_procedure_name => l_procName,
376: p_error_text => SQLERRM);
377: wip_utilities.get_message_stack(p_msg => x_errorMsg,
378: p_delete_stack => fnd_api.g_false);

Line 429: fnd_msg_pub.initialize;

425: end if;
426: end if;
427:
428: if(fnd_api.to_boolean(nvl(p_initMsgList, fnd_api.g_false))) then
429: fnd_msg_pub.initialize;
430: end if;
431:
432: if(l_numIntRows is null) then
433: select count(*)

Line 477: fnd_msg_pub.initialize;

473: --after inv supports x_trans_count, change if below
474: -- if(l_numTempRows = l_numIntRows) then
475: if(l_numErrRows = 0) then
476: if(fnd_api.to_boolean(nvl(p_initMsgList, fnd_api.g_false))) then
477: fnd_msg_pub.initialize;
478: end if;
479: if(l_logLevel <= wip_constants.trace_logging) then
480: wip_logger.exitPoint(p_procName => g_pkgName || '.' || l_procName,
481: p_procReturnStatus => x_returnStatus,

Line 497: fnd_msg_pub.initialize;

493:
494: if(fnd_api.to_boolean(nvl(p_addMsgToStack, fnd_api.g_true))) then
495: --re-initialize message stack
496: if(fnd_api.to_boolean(nvl(p_initMsgList, fnd_api.g_false))) then
497: fnd_msg_pub.initialize;
498: end if;
499:
500: select msik.concatenated_segments,
501: mti.error_explanation

Line 518: fnd_msg_pub.add;

514: fnd_message.set_token('ERR_MSG', l_errExplTbl(i));
515: if(l_logLevel <= wip_constants.trace_logging) then
516: wip_logger.log('item ' || l_itemNameTbl(i) || ': ' || l_errExplTbl(i), l_retStatus);
517: end if;
518: fnd_msg_pub.add;
519: end loop;
520: end if;
521:
522: if(fnd_api.to_boolean(nvl(p_rollBackOnErr, fnd_api.g_true))) then

Line 561: fnd_msg_pub.add;

557:
558: if(l_msgData is not null) then
559: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
560: fnd_message.set_token('MESSAGE', l_msgData);
561: fnd_msg_pub.add;
562: end if;
563: if(l_logLevel <= wip_constants.trace_logging) then
564: wip_logger.exitPoint(p_procName => g_pkgName || '.' || l_procName,
565: p_procReturnStatus => x_returnStatus,

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

570: end if;
571: end if;
572: when others then
573: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
574: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkgName,
575: p_procedure_name => l_procName,
576: p_error_text => SQLERRM);
577:
578: if(fnd_api.to_boolean(nvl(p_rollBackOnErr, fnd_api.g_true))) then