DBA Data[Home] [Help]

APPS.XDPCORE_ORDER dependencies on WF_CORE

Line 63: wf_core.context('XDPCORE_ORDER', 'INITIALIZE_ORDER', itemtype, itemkey, to_char(actid), funcmode);

59: END IF;
60:
61: EXCEPTION
62: WHEN OTHERS THEN
63: wf_core.context('XDPCORE_ORDER', 'INITIALIZE_ORDER', itemtype, itemkey, to_char(actid), funcmode);
64: END INITIALIZE_ORDER;
65:
66:
67: -- CONTINUE_ORDER

Line 98: wf_core.context('XDPCORE_ORDER', 'CONTINUE_ORDER', itemtype, itemkey, to_char(actid), funcmode);

94: END IF;
95:
96: EXCEPTION
97: WHEN OTHERS THEN
98: wf_core.context('XDPCORE_ORDER', 'CONTINUE_ORDER', itemtype, itemkey, to_char(actid), funcmode);
99: END CONTINUE_ORDER;
100:
101:
102: -- IS_BUNDLE_DETECTED

Line 134: wf_core.context('XDPCORE_ORDER', 'IS_BUNDLE_DETECTED', itemtype, itemkey, to_char(actid), funcmode);

130: END IF;
131:
132: EXCEPTION
133: WHEN OTHERS THEN
134: wf_core.context('XDPCORE_ORDER', 'IS_BUNDLE_DETECTED', itemtype, itemkey, to_char(actid), funcmode);
135: raise;
136: END IS_BUNDLE_DETECTED;
137:
138:

Line 219: wf_core.context('XDPCORE_ORDER', 'ContinueOrder',itemtype, itemkey, null, x_Progress);

215: EXCEPTION
216: WHEN others THEN
217:
218: x_Progress := 'XDPCORE_ORDER.ContinueOrder. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1200);
219: wf_core.context('XDPCORE_ORDER', 'ContinueOrder',itemtype, itemkey, null, x_Progress);
220: raise;
221: END ContinueOrder;
222:
223:

Line 255: wf_core.context('XDPCORE_ORDER', 'InitializeOrder', itemtype, itemkey, null, x_Progress);

251:
252: EXCEPTION
253: WHEN others THEN
254: x_Progress := 'XDPCORE_ORDER.InitializeOrder. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1200);
255: wf_core.context('XDPCORE_ORDER', 'InitializeOrder', itemtype, itemkey, null, x_Progress);
256: raise;
257: END InitializeOrder;
258:
259:

Line 318: wf_core.context('XDPCORE_ORDER', 'IsBundleDetected', itemtype, itemkey, null, x_Progress);

314:
315: EXCEPTION
316: WHEN others THEN
317: x_Progress := 'XDPCORE_ORDER.IsBundleDetected. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1200);
318: wf_core.context('XDPCORE_ORDER', 'IsBundleDetected', itemtype, itemkey, null, x_Progress);
319: raise;
320: END IsBundleDetected;
321:
322: PROCEDURE UPDATE_ORDER_STATUS (p_order_id IN NUMBER ,

Line 347: wf_core.context('XDPCORE_ORDER', 'UPDATE_ORDER_STATUS', p_itemtype, p_itemkey, null, x_Progress);

343:
344: EXCEPTION
345: WHEN others THEN
346: x_Progress := 'XDPCORE_ORDER.UPDATE_ORDER_STATUS. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1200);
347: wf_core.context('XDPCORE_ORDER', 'UPDATE_ORDER_STATUS', p_itemtype, p_itemkey, null, x_Progress);
348: rollback;
349: raise;
350:
351: END UPDATE_ORDER_STATUS;