DBA Data[Home] [Help]

APPS.IBE_CANCEL_ORDER_PVT dependencies on IBE_WORKFLOW_PVT

Line 233: IBE_UTIL.DEBUG('Ready to call Notification API:IBE_WORKFLOW_PVT.Notify_cancel_order');

229: END IF;
230: if x_return_status = FND_API.G_RET_STS_SUCCESS then
231: -- call Notification api.
232: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
233: IBE_UTIL.DEBUG('Ready to call Notification API:IBE_WORKFLOW_PVT.Notify_cancel_order');
234: IBE_UTIL.DEBUG('Input order id to notification API is: '||p_order_header_id);
235: END IF;
236: IBE_WORKFLOW_PVT.Notify_cancel_order(
237: p_api_version => 1.0,

Line 236: IBE_WORKFLOW_PVT.Notify_cancel_order(

232: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
233: IBE_UTIL.DEBUG('Ready to call Notification API:IBE_WORKFLOW_PVT.Notify_cancel_order');
234: IBE_UTIL.DEBUG('Input order id to notification API is: '||p_order_header_id);
235: END IF;
236: IBE_WORKFLOW_PVT.Notify_cancel_order(
237: p_api_version => 1.0,
238: p_init_msg_list => FND_API.G_FALSE,
239: p_order_id => p_order_header_id,
240: x_return_status => x_return_status,

Line 245: IBE_UTIL.DEBUG('Done Notification API:IBE_WORKFLOW_PVT.Notify_cancel_order');

241: x_msg_count => x_msg_count,
242: x_msg_data => x_msg_data
243: );
244: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
245: IBE_UTIL.DEBUG('Done Notification API:IBE_WORKFLOW_PVT.Notify_cancel_order');
246: END IF;
247: IF x_return_status = FND_API.G_RET_STS_ERROR THEN
248: RAISE FND_API.G_EXC_ERROR;
249: END IF;