DBA Data[Home] [Help]

APPS.WIP_MTLTEMPPROC_GRP dependencies on FND_MSG_PUB

Line 46: fnd_msg_pub.initialize;

42: end if;
43: end if;
44:
45: if(fnd_api.to_boolean(p_initMsgList)) then
46: fnd_msg_pub.initialize;
47: end if;
48:
49: l_retCode := inv_lpn_trx_pub.process_lpn_trx(p_trx_hdr_id => p_txnHdrID,
50: p_business_flow_code => p_mtlTxnBusinessFlowCode,

Line 54: fnd_msg_pub.initialize;

50: p_business_flow_code => p_mtlTxnBusinessFlowCode,
51: x_proc_msg => x_errorMsg);
52:
53: if(nvl(l_retCode, -1) <> 0) then
54: fnd_msg_pub.initialize;
55: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
56: fnd_message.set_token('MESSAGE', x_errorMsg);
57: x_returnStatus := fnd_api.g_ret_sts_error;
58: else

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

69: exception
70: when others then
71: rollback to wiptmppb0;
72: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
73: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkgName,
74: p_procedure_name => l_procName,
75: p_error_text => SQLERRM);
76: wip_utilities.get_message_stack(p_msg => x_errorMsg,
77: p_delete_stack => fnd_api.g_false,

Line 128: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_mtlTempProc_grp',

124: exception
125: when others then
126: rollback to wiptmppb100;
127: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
128: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_mtlTempProc_grp',
129: p_procedure_name => 'processWIP',
130: p_error_text => SQLERRM);
131: x_errorMsg := substrb(SQLERRM, 1, 240);
132: end processWIP;