DBA Data[Home] [Help]

APPS.PO_HEADERS_SV1 dependencies on FND_MSG_PUB

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

631: IF (PO_LOG.d_stmt) THEN
632: PO_LOG.stmt(d_module,d_pos,'x_message_text',x_message_text);
633: END IF;
634: WHEN OTHERS THEN
635: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name||':'||d_pos);
636: IF PO_LOG.d_exc THEN
637: PO_LOG.exc(d_module,d_pos,'Unhandled Exception in' || d_module);
638: END IF;
639: RAISE;

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

728: END IF;
729:
730: IF x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
731: d_pos := 70;
732: IF(FND_MSG_PUB.Count_Msg = 0) THEN
733: FND_MESSAGE.set_name('PO','PO_API_ERROR');
734: FND_MESSAGE.set_token('PROC_CALLER',l_api_name);
735: FND_MESSAGE.set_token('PROC_CALLED','OKC_TERMS_UTIL_GRP.delete_doc');
736: FND_MSG_PUB.add;

Line 736: FND_MSG_PUB.add;

732: IF(FND_MSG_PUB.Count_Msg = 0) THEN
733: FND_MESSAGE.set_name('PO','PO_API_ERROR');
734: FND_MESSAGE.set_token('PROC_CALLER',l_api_name);
735: FND_MESSAGE.set_token('PROC_CALLED','OKC_TERMS_UTIL_GRP.delete_doc');
736: FND_MSG_PUB.add;
737: RAISE FND_API.g_exc_error;
738: --else the message stack will be populated by the called procedure
739: END IF;
740: END IF; --x_return_status <> FND_API.G_RET_STS_SUCCESS

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

753: EXCEPTION
754: WHEN FND_API.g_exc_error THEN
755: x_return_status := FND_API.g_ret_sts_error;
756: WHEN OTHERS THEN
757: FND_MSG_PUB.add_exc_msg(g_pkg_name, l_api_name||':'||d_pos);
758: IF PO_LOG.d_exc THEN
759: PO_LOG.exc(d_module,d_pos,'Unhandled Exception in' || d_module);
760: END IF;
761: RAISE;