DBA Data[Home] [Help]

APPS.PO_DOCUMENT_FUNDS_PVT dependencies on FND_MSG_PUB

Line 2898: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN

2894: PO_DEBUG.debug_var(l_log_head,l_progress,'x_return_status',x_return_status);
2895: PO_DEBUG.debug_var(l_log_head,l_progress,'x_agreement_encumbered_tbl',x_agreement_encumbered_tbl);
2896: END IF;
2897: ROLLBACK TO IS_AGREEMENT_ENCUMBERED_SP;
2898: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
2899: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);
2900: END IF;
2901: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS End');
2902: EXCEPTION

Line 2899: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);

2895: PO_DEBUG.debug_var(l_log_head,l_progress,'x_agreement_encumbered_tbl',x_agreement_encumbered_tbl);
2896: END IF;
2897: ROLLBACK TO IS_AGREEMENT_ENCUMBERED_SP;
2898: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
2899: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);
2900: END IF;
2901: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS End');
2902: EXCEPTION
2903: WHEN OTHERS THEN

Line 3005: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN

3001: BEGIN
3002: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS Start');
3003: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3004: ROLLBACK TO IS_AGREEMENT_ENCUMBERED_SP;
3005: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
3006: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);
3007: END IF;
3008: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS End');
3009: EXCEPTION

Line 3006: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);

3002: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS Start');
3003: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3004: ROLLBACK TO IS_AGREEMENT_ENCUMBERED_SP;
3005: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
3006: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);
3007: END IF;
3008: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS End');
3009: EXCEPTION
3010: WHEN OTHERS THEN

Line 3955: -- All callers should get message from api message stack [fnd_msg_pub]

3951: END IF;
3952:
3953: -- Push the po_return_msg onto api msg list
3954: -- Bug 3516763: No longer put a message on the message dictionary stack.
3955: -- All callers should get message from api message stack [fnd_msg_pub]
3956: FND_MESSAGE.set_name('PO', l_po_return_msg_name);
3957: FND_MSG_PUB.add;
3958:
3959:

Line 3957: FND_MSG_PUB.add;

3953: -- Push the po_return_msg onto api msg list
3954: -- Bug 3516763: No longer put a message on the message dictionary stack.
3955: -- All callers should get message from api message stack [fnd_msg_pub]
3956: FND_MESSAGE.set_name('PO', l_po_return_msg_name);
3957: FND_MSG_PUB.add;
3958:
3959:
3960: IF g_debug_stmt THEN
3961: PO_DEBUG.debug_var(l_log_head,l_progress,'x_online_report_id',

Line 4056: FND_MSG_PUB.get(

4052:
4053: -- Assume raiser put a message onto the API message list.
4054: -- Retrieve that message.
4055: l_exc_message_text :=
4056: FND_MSG_PUB.get(
4057: p_msg_index => FND_MSG_PUB.G_LAST
4058: , p_encoded => FND_API.G_FALSE
4059: );
4060: ----

Line 4057: p_msg_index => FND_MSG_PUB.G_LAST

4053: -- Assume raiser put a message onto the API message list.
4054: -- Retrieve that message.
4055: l_exc_message_text :=
4056: FND_MSG_PUB.get(
4057: p_msg_index => FND_MSG_PUB.G_LAST
4058: , p_encoded => FND_API.G_FALSE
4059: );
4060: ----
4061: ELSIF (l_exc_code = g_GL_FUNDS_API_EXC) then

Line 4088: -- All callers should get message from api message stack [fnd_msg_pub]

4084: END IF;
4085:
4086: -- Push the high-level po_return_msg onto the API msg list
4087: -- Bug 3516763: No longer put a message on the message dictionary stack.
4088: -- All callers should get message from api message stack [fnd_msg_pub]
4089:
4090: FND_MESSAGE.set_name('PO', l_po_return_msg_name);
4091: FND_MSG_PUB.add;
4092:

Line 4091: FND_MSG_PUB.add;

4087: -- Bug 3516763: No longer put a message on the message dictionary stack.
4088: -- All callers should get message from api message stack [fnd_msg_pub]
4089:
4090: FND_MESSAGE.set_name('PO', l_po_return_msg_name);
4091: FND_MSG_PUB.add;
4092:
4093: -- bug 3218669
4094: -- Clean up GL_BC_PACKETS so that the failed transaction
4095: -- does not continue to hold up funds

Line 4241: fnd_msg_pub.add;

4237: --unexpected error from this procedure
4238: x_return_status := FND_API.g_ret_sts_unexp_error;
4239: --add message to the stack and log a debug msg if necessary
4240: po_message_s.sql_error(g_pkg_name, l_api_name, l_progress, SQLCODE, SQLERRM);
4241: fnd_msg_pub.add;
4242: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS End');
4243: EXCEPTION
4244: WHEN OTHERS THEN
4245: NULL;

Line 4350: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN

4346: BEGIN
4347: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS Start');
4348: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
4349: ROLLBACK TO IS_RESERVABLE_SP;
4350: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
4351: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);
4352: END IF;
4353: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS End');
4354: EXCEPTION

Line 4351: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);

4347: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS Start');
4348: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
4349: ROLLBACK TO IS_RESERVABLE_SP;
4350: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
4351: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);
4352: END IF;
4353: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS End');
4354: EXCEPTION
4355: WHEN OTHERS THEN

Line 4461: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN

4457: BEGIN
4458: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS Start');
4459: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
4460: ROLLBACK TO IS_UNRESERVABLE_SP;
4461: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
4462: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);
4463: END IF;
4464: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS End');
4465: EXCEPTION

Line 4462: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);

4458: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS Start');
4459: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
4460: ROLLBACK TO IS_UNRESERVABLE_SP;
4461: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
4462: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name);
4463: END IF;
4464: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS End');
4465: EXCEPTION
4466: WHEN OTHERS THEN

Line 5086: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

5082: BEGIN
5083: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS Start');
5084: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
5085: ROLLBACK TO POPULATE_ENC_GT_ACTION_IDS_PVT;
5086: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
5087: FND_MSG_PUB.add_exc_msg(G_PKG_NAME,l_api_name,SQLERRM);
5088: END IF;
5089: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS End');
5090: EXCEPTION

Line 5087: FND_MSG_PUB.add_exc_msg(G_PKG_NAME,l_api_name,SQLERRM);

5083: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS Start');
5084: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
5085: ROLLBACK TO POPULATE_ENC_GT_ACTION_IDS_PVT;
5086: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
5087: FND_MSG_PUB.add_exc_msg(G_PKG_NAME,l_api_name,SQLERRM);
5088: END IF;
5089: PO_DEBUG.debug_unexp(l_log_head,l_progress,'OTHERS End');
5090: EXCEPTION
5091: WHEN OTHERS THEN

Line 5180: FND_MSG_PUB.add();

5176:
5177: -- Take the SQL error message from the message dictionary stack
5178: -- and put it in the API message list.
5179:
5180: FND_MSG_PUB.add();
5181:
5182: l_progress := '200';
5183:
5184:

Line 5196: FND_MSG_PUB.add();

5192:
5193: -- Pop the message from the message dictionary stack
5194: -- and add it to the API message list.
5195:
5196: FND_MSG_PUB.add();
5197:
5198: l_progress := '300';
5199:
5200: