DBA Data[Home] [Help]

APPS.PO_REQAPPROVAL_LAUNCH dependencies on PO_WF_DEBUG_PKG

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

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

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

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

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

217:
218:
219: x_progress := 'PO_REQAPPROVAL_LAUNCH.CreateWFInstance:01';
220: IF (g_po_wf_debug = 'Y') THEN
221: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
222: END IF;
223:
224: /* Create the ItemKey: Use the PO workflow sequence */
225: select to_char(PO_WF_ITEMKEY_S.nextval) into l_dummy from sys.dual;

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

243:
244: x_progress := 'PO_REQAPPROVAL_LAUNCH.CreateWFInstance:02 ItemType=' ||
245: l_ItemType || ' ItemKey=' || l_ItemKey;
246: IF (g_po_wf_debug = 'Y') THEN
247: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
248: END IF;
249:
250: /* Call the procedure that creates the WF instance and starts the process */
251:

Line 357: PO_WF_DEBUG_PKG.insert_debug(

353: --Context setting revamp
354:
355: --
356: IF (g_po_wf_debug = 'Y') THEN
357: PO_WF_DEBUG_PKG.insert_debug(
358: itemtype => p_itemtype,
359: itemkey => p_itemkey,
360: x_progress => 'POREQ_SELECTOR called with mode: '
361: ||p_funcmode||' itemtype: '||p_itemtype

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

398: ||' ses_resp_id '||l_session_resp_id||' responder id '
399: ||l_responder_id;
400:
401: IF (g_po_wf_debug = 'Y') THEN
402: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);
403: END IF;
404: --
405:
406:

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

407:
408: IF (p_funcmode = 'TEST_CTX') THEN
409: -- Bug 6144768
410: IF (g_po_wf_debug = 'Y') THEN
411: PO_WF_DEBUG_PKG.insert_debug(itemtype => p_itemtype,
412: itemkey => p_itemkey,
413: x_progress => 'POREQ_SELECTOR: inside Test Ctx ');
414: PO_WF_DEBUG_PKG.insert_debug(itemtype => p_itemtype,
415: itemkey => p_itemkey,

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

410: IF (g_po_wf_debug = 'Y') THEN
411: PO_WF_DEBUG_PKG.insert_debug(itemtype => p_itemtype,
412: itemkey => p_itemkey,
413: x_progress => 'POREQ_SELECTOR: inside Test Ctx ');
414: PO_WF_DEBUG_PKG.insert_debug(itemtype => p_itemtype,
415: itemkey => p_itemkey,
416: x_progress => 'l_is_supplier_context: ' || l_is_supplier_context);
417: END IF;
418:

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

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

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

490: --
491: l_progress :='030 selector fn : setting user id :'||l_responder_id
492: ||' resp id '||l_resp_id_to_set||' l_appl id '||l_appl_id_to_set;
493: IF (g_po_wf_debug = 'Y') THEN
494: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);
495: END IF;
496: --
497:
498: else

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

510: aname => 'APPLICATION_ID');
511: --
512: l_progress := '040 selector fn responder id null';
513: IF (g_po_wf_debug = 'Y') THEN
514: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);
515: END IF;
516: --
517:
518: --

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

518: --
519: l_progress := '050 selector fn : set user '||l_user_id_to_set||' resp id '
520: ||l_resp_id_to_set||' appl id '||l_appl_id_to_set;
521: IF (g_po_wf_debug = 'Y') THEN
522: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(p_itemtype,p_itemkey,l_progress);
523: END IF;
524: --
525: end if;
526:

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

546:
547: WHEN OTHERS THEN
548:
549: IF (g_po_wf_debug = 'Y') THEN
550: PO_WF_DEBUG_PKG.insert_debug(itemtype => p_itemtype,
551: itemkey => p_itemkey,
552: x_progress => 'Exception in Selector');
553: END IF;
554: