DBA Data[Home] [Help]

APPS.XDPCORE_ORDER dependencies on XDPCORE

Line 1: PACKAGE BODY XDPCORE_ORDER AS

1: PACKAGE BODY XDPCORE_ORDER AS
2: /* $Header: XDPCOROB.pls 120.1 2005/06/15 22:39:05 appldev $ */
3:
4:
5: /****

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 218: x_Progress := 'XDPCORE_ORDER.ContinueOrder. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1200);

214:
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:

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 254: x_Progress := 'XDPCORE_ORDER.InitializeOrder. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1200);

250: END IF;
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:

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 299: XDPCORE.CheckNAddItemAttrText (itemtype => IsBundleDetected.itemtype,

295:
296: IF l_BundleCount = 0 THEN
297: /* Bundle Not detected */
298:
299: XDPCORE.CheckNAddItemAttrText (itemtype => IsBundleDetected.itemtype,
300: itemkey => IsBundleDetected.itemkey,
301: AttrName => 'LINE_PROCESSING_CALLER',
302: AttrValue => 'ORDER',
303: ErrCode => l_ErrCode,

Line 310: --bundle process.. see XDPCORE_BUNDLE.InitializeBundle.. skilaru

306:
307: ELSE
308: /* Bundle Detected */
309: --'LINE_PROCESSING_CALLER' attribute is set while launchig lines from
310: --bundle process.. see XDPCORE_BUNDLE.InitializeBundle.. skilaru
311: return ('Y');
312:
313: END IF;
314:

Line 317: x_Progress := 'XDPCORE_ORDER.IsBundleDetected. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1200);

313: END IF;
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:

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 346: x_Progress := 'XDPCORE_ORDER.UPDATE_ORDER_STATUS. Unhandled Exception: ' || SUBSTR(SQLERRM, 1, 1200);

342: COMMIT ;
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:

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;

Line 353: End XDPCORE_ORDER;

349: raise;
350:
351: END UPDATE_ORDER_STATUS;
352:
353: End XDPCORE_ORDER;