DBA Data[Home] [Help]

APPS.PO_REQAPPROVAL_LAUNCH dependencies on PO_WF_DEBUG_PKG

Line 46: -- /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

42:
43: BEGIN
44:
45: -- x_progress := 'PO_REQAPPROVAL_LAUNCH.Launch_CreatePO_WF: 01';
46: -- /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
47:
48:
49: -- Do nothing in cancel or timeout mode
50: --

Line 92: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

88: BEGIN
89:
90: x_progress := 'PO_REQAPPROVAL_LAUNCH.LaunchCreatePOWF:01';
91: IF (g_po_wf_debug = 'Y') THEN
92: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
93: END IF;
94:
95:
96: l_requisition_header_id := wf_engine.GetItemAttrNumber (itemtype => itemtype,

Line 200: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

196:
197:
198: x_progress := 'PO_REQAPPROVAL_LAUNCH.CreateWFInstance:01';
199: IF (g_po_wf_debug = 'Y') THEN
200: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
201: END IF;
202:
203: /* Create the ItemKey: Use the PO workflow sequence */
204: select to_char(PO_WF_ITEMKEY_S.nextval) into l_dummy from sys.dual;

Line 226: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

222:
223: x_progress := 'PO_REQAPPROVAL_LAUNCH.CreateWFInstance:02 ItemType=' ||
224: l_ItemType || ' ItemKey=' || l_ItemKey;
225: IF (g_po_wf_debug = 'Y') THEN
226: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
227: END IF;
228:
229: /* Call the procedure that creates the WF instance and starts the process */
230:

Line 330: PO_WF_DEBUG_PKG.insert_debug(

326: --Context setting revamp
327:
328: --
329: IF (g_po_wf_debug = 'Y') THEN
330: PO_WF_DEBUG_PKG.insert_debug(
331: itemtype => p_itemtype,
332: itemkey => p_itemkey,
333: x_progress => 'POREQ_SELECTOR called with mode: '
334: ||p_funcmode||' itemtype: '||p_itemtype

Line 375: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);

371: ||' ses_resp_id '||l_session_resp_id||' responder id '
372: ||l_responder_id;
373:
374: IF (g_po_wf_debug = 'Y') THEN
375: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);
376: END IF;
377: --
378:
379:

Line 384: PO_WF_DEBUG_PKG.insert_debug(itemtype => p_itemtype,

380:
381: IF (p_funcmode = 'TEST_CTX') THEN
382: -- Bug 6144768
383: IF (g_po_wf_debug = 'Y') THEN
384: PO_WF_DEBUG_PKG.insert_debug(itemtype => p_itemtype,
385: itemkey => p_itemkey,
386: x_progress => 'POREQ_SELECTOR: inside Test Ctx ');
387: PO_WF_DEBUG_PKG.insert_debug(itemtype => p_itemtype,
388: itemkey => p_itemkey,

Line 387: PO_WF_DEBUG_PKG.insert_debug(itemtype => p_itemtype,

383: IF (g_po_wf_debug = 'Y') THEN
384: PO_WF_DEBUG_PKG.insert_debug(itemtype => p_itemtype,
385: itemkey => p_itemkey,
386: x_progress => 'POREQ_SELECTOR: inside Test Ctx ');
387: PO_WF_DEBUG_PKG.insert_debug(itemtype => p_itemtype,
388: itemkey => p_itemkey,
389: x_progress => 'l_is_supplier_context: ' || l_is_supplier_context);
390: END IF;
391:

Line 459: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);

455: aname => 'RESPONDER_APPL_ID');
456: --
457: l_progress := '020 selection fn responder id not null';
458: IF (g_po_wf_debug = 'Y') THEN
459: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);
460: END IF;
461: --
462:
463: --

Line 467: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);

463: --
464: l_progress :='030 selector fn : setting user id :'||l_responder_id
465: ||' resp id '||l_resp_id_to_set||' l_appl id '||l_appl_id_to_set;
466: IF (g_po_wf_debug = 'Y') THEN
467: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);
468: END IF;
469: --
470:
471: else

Line 487: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);

483: aname => 'APPLICATION_ID');
484: --
485: l_progress := '040 selector fn responder id null';
486: IF (g_po_wf_debug = 'Y') THEN
487: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);
488: END IF;
489: --
490:
491: --

Line 495: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);

491: --
492: l_progress := '050 selector fn : set user '||l_user_id_to_set||' resp id '
493: ||l_resp_id_to_set||' appl id '||l_appl_id_to_set;
494: IF (g_po_wf_debug = 'Y') THEN
495: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);
496: END IF;
497: --
498: end if;
499:

Line 523: PO_WF_DEBUG_PKG.insert_debug(itemtype => p_itemtype,

519:
520: WHEN OTHERS THEN
521:
522: IF (g_po_wf_debug = 'Y') THEN
523: PO_WF_DEBUG_PKG.insert_debug(itemtype => p_itemtype,
524: itemkey => p_itemkey,
525: x_progress => 'Exception in Selector');
526: END IF;
527: