DBA Data[Home] [Help]

APPS.PO_REQ_DOCUMENT_UPDATE_PVT dependencies on FND_MESSAGE

Line 201: -- The number of messages put into FND Message Stack by this API

197: --OUT:
198: --x_return_status
199: -- Indicates API return status as 'S', 'E' or 'U'.
200: --x_msg_count
201: -- The number of messages put into FND Message Stack by this API
202: --x_msg_data
203: -- First message put into FND Message Stack by this API
204: --Testing:
205: -- All the input table parameters should have the exact same length.

Line 203: -- First message put into FND Message Stack by this API

199: -- Indicates API return status as 'S', 'E' or 'U'.
200: --x_msg_count
201: -- The number of messages put into FND Message Stack by this API
202: --x_msg_data
203: -- First message put into FND Message Stack by this API
204: --Testing:
205: -- All the input table parameters should have the exact same length.
206: -- They may have null values at some indexes, but need to identify an entity uniquely
207: -- Call the API when only Requisition Exist, PO/Release Exist

Line 274: FND_MESSAGE.set_name('PO', 'PO_CANT_CHANGE_REQ');

270: l_progress := '040';
271: FOR i IN 1..l_line_count LOOP
272: IF l_req_status_rec.updatable_flag(i) <> 'Y' THEN
273: -- The Req Header/Line is not updatable, Error out
274: FND_MESSAGE.set_name('PO', 'PO_CANT_CHANGE_REQ');
275: FND_MSG_PUB.add;
276: RAISE FND_API.G_EXC_ERROR;
277: END IF;
278: END LOOP;

Line 340: FND_MESSAGE.SET_NAME('PO','PO_CUSTOM_MSG');

336:
337: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
338: FOR i IN 1..po_tax_interface_pvt.G_TAX_ERRORS_TBL.MESSAGE_TEXT.COUNT
339: LOOP
340: FND_MESSAGE.SET_NAME('PO','PO_CUSTOM_MSG');
341: FND_MESSAGE.SET_TOKEN('TRANSLATED_TOKEN',po_tax_interface_pvt.G_TAX_ERRORS_TBL.message_text(i));
342: FND_MSG_PUB.add;
343: END LOOP;
344: END IF;

Line 341: FND_MESSAGE.SET_TOKEN('TRANSLATED_TOKEN',po_tax_interface_pvt.G_TAX_ERRORS_TBL.message_text(i));

337: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
338: FOR i IN 1..po_tax_interface_pvt.G_TAX_ERRORS_TBL.MESSAGE_TEXT.COUNT
339: LOOP
340: FND_MESSAGE.SET_NAME('PO','PO_CUSTOM_MSG');
341: FND_MESSAGE.SET_TOKEN('TRANSLATED_TOKEN',po_tax_interface_pvt.G_TAX_ERRORS_TBL.message_text(i));
342: FND_MSG_PUB.add;
343: END LOOP;
344: END IF;
345: