DBA Data[Home] [Help]

APPS.OE_ORDER_IMPORT_UTIL_PVT dependencies on OE_MSG_PUB

Line 200: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

196: EXCEPTION
197: WHEN OTHERS THEN
198: oe_debug_pub.add('Unexpected error: '||sqlerrm);
199:
200: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
201: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
202: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,'Delete_Order',substr(sqlerrm,1,2000));
203: END IF;
204:

Line 202: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,'Delete_Order',substr(sqlerrm,1,2000));

198: oe_debug_pub.add('Unexpected error: '||sqlerrm);
199:
200: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
201: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
202: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME,'Delete_Order',substr(sqlerrm,1,2000));
203: END IF;
204:
205: END Delete_Order;
206:

Line 244: OE_MSG_PUB.DELETE_OI_MESSAGE(

240:
241:
242: --Call to DELETE_OI_MESSAGE to delete the messages from oe_processing_msgs
243: --and oe_processing_msgs_tl.Fix for bug#2110646.
244: OE_MSG_PUB.DELETE_OI_MESSAGE(
245: p_order_source_id => l_order_source_id,
246: p_orig_sys_document_ref => l_orig_sys_document_ref,
247: p_change_sequence => l_change_sequence,
248: p_org_id => l_org_id

Line 259: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

255: EXCEPTION
256: WHEN OTHERS THEN
257: oe_debug_pub.add('Unexpected error: '||sqlerrm);
258:
259: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
260: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
261: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'Delete_Messages');
262: END IF;
263:

Line 261: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'Delete_Messages');

257: oe_debug_pub.add('Unexpected error: '||sqlerrm);
258:
259: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
260: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
261: OE_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'Delete_Messages');
262: END IF;
263:
264: END Delete_Messages;
265: