DBA Data[Home] [Help]

APPS.PO_REQ_DOCUMENT_CANCEL_PVT dependencies on FND_MESSAGE

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

33: --OUT:
34: --x_return_status
35: -- Indicates API return status as 'S', 'E' or 'U'.
36: --x_msg_count
37: -- The number of messages put into FND Message Stack by this API
38: --x_msg_data
39: -- First message put into FND Message Stack by this API
40: --Testing:
41: -- All the input table parameters should have the exact same length.

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

35: -- Indicates API return status as 'S', 'E' or 'U'.
36: --x_msg_count
37: -- The number of messages put into FND Message Stack by this API
38: --x_msg_data
39: -- First message put into FND Message Stack by this API
40: --Testing:
41: -- All the input table parameters should have the exact same length.
42: -- They may have null values at some indexes, but need to identify an entity uniquely
43: -- Call the API when only Requisition Exist, PO/Release Exist

Line 129: FND_MESSAGE.set_name('PO', 'PO_REQ_CANCEL_ERROR');

125: x_req_action_date => p_cancel_date,
126: x_encumbrance_flag => l_encumbrance_flag,
127: x_oe_installed_flag => l_oe_installed_flag) = FALSE
128: THEN
129: FND_MESSAGE.set_name('PO', 'PO_REQ_CANCEL_ERROR');
130: FND_MSG_PUB.add;
131: RAISE FND_API.G_EXC_ERROR;
132: END IF;
133:

Line 169: FND_MESSAGE.set_name('PO', 'PO_REQ_CANCEL_ERROR');

165: x_oe_installed_flag => l_oe_installed_flag,
166: x_req_control_error_rc => l_req_control_error_rc);
167:
168: IF l_req_control_error_rc = 'Y' THEN
169: FND_MESSAGE.set_name('PO', 'PO_REQ_CANCEL_ERROR');
170: FND_MSG_PUB.add;
171: RAISE FND_API.G_EXC_ERROR;
172: END IF;
173: