DBA Data[Home] [Help]

APPS.PO_CREATE_SR_ASL dependencies on PO_WF_DEBUG_PKG

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

49:
50: BEGIN
51: x_progress := 'PO_CREATE_SR_ASL:PROCESS_PO_LINES_FOR_SR_ASL: 01';
52: IF (g_po_wf_debug = 'Y') THEN
53: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
54: END IF;
55:
56:
57: -- Do nothing in cancel or timeout mode

Line 118: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

114:
115: resultout := wf_engine.eng_completed || ':' || l_process_po;
116: x_progress := ': 02. Result= ' || l_process_po;
117: IF (g_po_wf_debug = 'Y') THEN
118: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
119: END IF;
120:
121: EXCEPTION
122: WHEN OTHERS THEN

Line 125: --PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

121: EXCEPTION
122: WHEN OTHERS THEN
123: l_process_po := 'N';
124: x_progress := ': 03. Result= ' || l_process_po;
125: --PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
126: resultout := wf_engine.eng_completed || ':' || l_process_po;
127:
128: END PROCESS_PO_LINES_FOR_SR_ASL;
129:

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

264: BEGIN
265:
266: x_progress := 'PO_CREATE_SR_ASL:Create_ASL: 01';
267: IF (g_po_wf_debug = 'Y') THEN
268: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
269: END IF;
270:
271: l_interface_header_id := wf_engine.GetItemAttrNumber (itemtype, itemkey,'PO_INTERFACE_HEADER_ID');
272:

Line 345: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

341:
342: l_create_asl := 'Y';
343: x_progress := ': 02. Result= ' || l_create_asl;
344: IF (g_po_wf_debug = 'Y') THEN
345: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
346: END IF;
347: resultout := wf_engine.eng_completed || ':' || l_create_asl;
348:
349: EXCEPTION

Line 354: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

350: WHEN OTHERS THEN
351: l_create_asl := 'Y';
352: x_progress := ': 03. Result= ' || l_create_asl;
353: IF (g_po_wf_debug = 'Y') THEN
354: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
355: END IF;
356: resultout := wf_engine.eng_completed || ':' || l_create_asl;
357: END Create_ASL;
358:

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

387:
388: BEGIN
389: x_progress := 'PO_CREATE_SR_ASL:Create_Sourcing_Rule: 01';
390: IF (g_po_wf_debug = 'Y') THEN
391: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
392: END IF;
393:
394: l_interface_header_id := wf_engine.GetItemAttrNumber (itemtype, itemkey,'PO_INTERFACE_HEADER_ID');
395:

Line 461: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

457: l_create_sr := 'Y';
458:
459: x_progress := ': 02. Result= ' || l_create_sr;
460: IF (g_po_wf_debug = 'Y') THEN
461: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
462: END IF;
463: resultout := wf_engine.eng_completed || ':' || l_create_sr;
464:
465: EXCEPTION

Line 470: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

466: WHEN OTHERS THEN
467: l_create_sr := 'Y';
468: x_progress := ': 03. Result= ' || l_create_sr;
469: IF (g_po_wf_debug = 'Y') THEN
470: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
471: END IF;
472: resultout := wf_engine.eng_completed || ':' || l_create_sr;
473: END Create_Sourcing_Rule;
474: