DBA Data[Home] [Help]

APPS.PO_HEADERS_SV1 dependencies on FND_MSG_PUB

Line 562: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name||':'||d_pos);

558: IF (PO_LOG.d_stmt) THEN
559: PO_LOG.stmt(d_module,d_pos,'x_message_text',x_message_text);
560: END IF;
561: WHEN OTHERS THEN
562: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name||':'||d_pos);
563: IF PO_LOG.d_exc THEN
564: PO_LOG.exc(d_module,d_pos,'Unhandled Exception in' || d_module);
565: END IF;
566: RAISE;

Line 659: IF(FND_MSG_PUB.Count_Msg = 0) THEN

655: END IF;
656:
657: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
658: d_pos := 70;
659: IF(FND_MSG_PUB.Count_Msg = 0) THEN
660: FND_MESSAGE.set_name('PO','PO_API_ERROR');
661: FND_MESSAGE.set_token('PROC_CALLER',l_api_name);
662: FND_MESSAGE.set_token('PROC_CALLED','OKC_TERMS_UTIL_GRP.delete_doc');
663: FND_MSG_PUB.add;

Line 663: FND_MSG_PUB.add;

659: IF(FND_MSG_PUB.Count_Msg = 0) THEN
660: FND_MESSAGE.set_name('PO','PO_API_ERROR');
661: FND_MESSAGE.set_token('PROC_CALLER',l_api_name);
662: FND_MESSAGE.set_token('PROC_CALLED','OKC_TERMS_UTIL_GRP.delete_doc');
663: FND_MSG_PUB.add;
664: RAISE FND_API.g_exc_error;
665: --else the message stack will be populated by the called procedure
666: END IF;
667: END IF; --x_return_status <> FND_API.G_RET_STS_SUCCESS

Line 684: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name||':'||d_pos);

680: EXCEPTION
681: WHEN FND_API.g_exc_error THEN
682: x_return_status := FND_API.g_ret_sts_error;
683: WHEN OTHERS THEN
684: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name||':'||d_pos);
685: IF PO_LOG.d_exc THEN
686: PO_LOG.exc(d_module,d_pos,'Unhandled Exception in' || d_module);
687: END IF;
688: RAISE;