DBA Data[Home] [Help]

APPS.PO_REQ_DOCUMENT_CHECKS_PVT dependencies on FND_MESSAGE

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

35: -- Indicates API return status as 'S', 'E' or 'U'.
36: --x_req_status_rec
37: -- Table x_req_status_rec.updateable_flag will be 'Y' or 'N' for each input entity
38: --x_msg_count
39: -- The number of messages put into FND Message Stack by this API
40: --x_msg_data
41: -- First message put into FND Message Stack by this API
42: --Notes:
43: -- The implementation of updatable_flag involves a fake "update dual" statement to

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

37: -- Table x_req_status_rec.updateable_flag will be 'Y' or 'N' for each input entity
38: --x_msg_count
39: -- The number of messages put into FND Message Stack by this API
40: --x_msg_data
41: -- First message put into FND Message Stack by this API
42: --Notes:
43: -- The implementation of updatable_flag involves a fake "update dual" statement to
44: -- optimize performance.
45: --End of Comments

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

186: -- Indicates API return status as 'S', 'E' or 'U'.
187: --x_req_status_rec
188: -- Table x_req_status_rec.updateable_flag will be 'Y' or 'N' for each input entity
189: --x_msg_count
190: -- The number of messages put into FND Message Stack by this API
191: --x_msg_data
192: -- First message put into FND Message Stack by this API
193: --Notes:
194: -- The implementation of reservable_flag involves a fake "update dual" statement to

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

188: -- Table x_req_status_rec.updateable_flag will be 'Y' or 'N' for each input entity
189: --x_msg_count
190: -- The number of messages put into FND Message Stack by this API
191: --x_msg_data
192: -- First message put into FND Message Stack by this API
193: --Notes:
194: -- The implementation of reservable_flag involves a fake "update dual" statement to
195: -- optimize performance.
196: --End of Comments

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

317: -- Indicates API return status as 'S', 'E' or 'U'.
318: --x_req_status_rec
319: -- Table x_req_status_rec.updateable_flag will be 'Y' or 'N' for each input entity
320: --x_msg_count
321: -- The number of messages put into FND Message Stack by this API
322: --x_msg_data
323: -- First message put into FND Message Stack by this API
324: --Notes:
325: -- The implementation of unreservable_flag involves a fake "update dual" statement to

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

319: -- Table x_req_status_rec.updateable_flag will be 'Y' or 'N' for each input entity
320: --x_msg_count
321: -- The number of messages put into FND Message Stack by this API
322: --x_msg_data
323: -- First message put into FND Message Stack by this API
324: --Notes:
325: -- The implementation of unreservable_flag involves a fake "update dual" statement to
326: -- optimize performance.
327: --End of Comments

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

453: -- Indicates API return status as 'S', 'E' or 'U'.
454: --x_req_status_rec
455: -- The various status fields would have the PO/Rel Line/Shipment status values
456: --x_msg_count
457: -- The number of messages put into FND Message Stack by this API
458: --x_msg_data
459: -- First message put into FND Message Stack by this API
460: --End of Comments
461: -------------------------------------------------------------------------------

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

455: -- The various status fields would have the PO/Rel Line/Shipment status values
456: --x_msg_count
457: -- The number of messages put into FND Message Stack by this API
458: --x_msg_data
459: -- First message put into FND Message Stack by this API
460: --End of Comments
461: -------------------------------------------------------------------------------
462:
463: PROCEDURE get_status (

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

593: -- the updateable_flag would have 'Y' or 'N' for each entity in the Table
594: -- If p_mode contains GET_APPROVAL_STATUS,
595: -- various status fields for Header/Line like authorization_status, cancel_flag
596: --x_msg_count
597: -- The number of messages put into FND Message Stack by this API
598: --x_msg_data
599: -- First message put into FND Message Stack by this API
600: --Testing:
601: -- All the input table parameters should have the exact same length.

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

595: -- various status fields for Header/Line like authorization_status, cancel_flag
596: --x_msg_count
597: -- The number of messages put into FND Message Stack by this API
598: --x_msg_data
599: -- First message put into FND Message Stack by this API
600: --Testing:
601: -- All the input table parameters should have the exact same length.
602: -- Call the API when 1. only Requisition Header Exist, and 2. Line also exists
603: --End of Comments

Line 729: FND_MESSAGE.set_name('PO', 'PO_STATCHK_GENERAL_ERROR');

725:
726: l_progress := '050';
727:
728: IF x_return_status is null THEN -- no valid check status request specified
729: FND_MESSAGE.set_name('PO', 'PO_STATCHK_GENERAL_ERROR');
730: FND_MESSAGE.set_token('ERROR_TEXT', 'Invalid p_mode: ' || p_mode);
731: FND_MSG_PUB.Add;
732: RAISE FND_API.G_EXC_ERROR;
733: END IF;

Line 730: FND_MESSAGE.set_token('ERROR_TEXT', 'Invalid p_mode: ' || p_mode);

726: l_progress := '050';
727:
728: IF x_return_status is null THEN -- no valid check status request specified
729: FND_MESSAGE.set_name('PO', 'PO_STATCHK_GENERAL_ERROR');
730: FND_MESSAGE.set_token('ERROR_TEXT', 'Invalid p_mode: ' || p_mode);
731: FND_MSG_PUB.Add;
732: RAISE FND_API.G_EXC_ERROR;
733: END IF;
734: