DBA Data[Home] [Help]

APPS.PO_REQ_DOCUMENT_CANCEL_PVT dependencies on FND_MSG_PUB

Line 130: FND_MSG_PUB.add;

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:
134: IF l_encumbrance_flag = 'Y' THEN

Line 170: FND_MSG_PUB.add;

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:
174: END IF; --End of IF l_encumbrance_flag = 'Y'

Line 186: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

182: PO_MOAC_UTILS_PVT.set_org_context(l_original_org_id) ; --
183:
184: EXCEPTION
185: WHEN FND_API.G_EXC_ERROR THEN
186: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
187: x_return_status := FND_API.G_RET_STS_ERROR;
188: -- Bug 3362534 Set the org context back to the original operating unit.
189: PO_MOAC_UTILS_PVT.set_org_context(l_original_org_id) ; --
190: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 191: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

187: x_return_status := FND_API.G_RET_STS_ERROR;
188: -- Bug 3362534 Set the org context back to the original operating unit.
189: PO_MOAC_UTILS_PVT.set_org_context(l_original_org_id) ; --
190: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
191: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
192: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
193: -- Bug 3362534 Set the org context back to the original operating unit.
194: PO_MOAC_UTILS_PVT.set_org_context(l_original_org_id) ; --
195: WHEN OTHERS THEN

Line 196: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name || '.' || l_progress);

192: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
193: -- Bug 3362534 Set the org context back to the original operating unit.
194: PO_MOAC_UTILS_PVT.set_org_context(l_original_org_id) ; --
195: WHEN OTHERS THEN
196: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name || '.' || l_progress);
197: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
198: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
199: -- Bug 3362534 Set the org context back to the original operating unit.
200: PO_MOAC_UTILS_PVT.set_org_context(l_original_org_id) ; --

Line 197: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);

193: -- Bug 3362534 Set the org context back to the original operating unit.
194: PO_MOAC_UTILS_PVT.set_org_context(l_original_org_id) ; --
195: WHEN OTHERS THEN
196: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, l_api_name || '.' || l_progress);
197: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
198: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
199: -- Bug 3362534 Set the org context back to the original operating unit.
200: PO_MOAC_UTILS_PVT.set_org_context(l_original_org_id) ; --
201: