DBA Data[Home] [Help]

APPS.PO_NEGOTIATIONS4_PVT dependencies on WF_ENGINE

Line 2168: if (funcmode <> wf_engine.eng_run) then

2164: x_progress := 'PO_NEGOTIATIONS4_PVT.Consume_ReqDemandYesNo: 01';
2165: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
2166:
2167: -- Do nothing in cancel or timeout mode
2168: if (funcmode <> wf_engine.eng_run) then
2169: resultout := wf_engine.eng_null;
2170: return;
2171: end if;
2172:

Line 2169: resultout := wf_engine.eng_null;

2165: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
2166:
2167: -- Do nothing in cancel or timeout mode
2168: if (funcmode <> wf_engine.eng_run) then
2169: resultout := wf_engine.eng_null;
2170: return;
2171: end if;
2172:
2173:

Line 2215: resultout := wf_engine.eng_completed || ':' || nvl(l_consume_req_demand_flag, 'N');

2211: WHERE po_header_id = l_document_id;
2212:
2213: END IF;
2214:
2215: resultout := wf_engine.eng_completed || ':' || nvl(l_consume_req_demand_flag, 'N');
2216:
2217: x_progress := 'PO_NEGOTIATIONS4_PVT.Consume_ReqDemandYesNo: 02. Result= '
2218: || l_consume_req_demand_flag;
2219: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

Line 2224: resultout := wf_engine.eng_completed || ':' || l_consume_req_demand_flag;

2220:
2221: EXCEPTION
2222: WHEN OTHERS THEN
2223: l_consume_req_demand_flag := 'N';
2224: resultout := wf_engine.eng_completed || ':' || l_consume_req_demand_flag;
2225: END Consume_ReqDemandYesNo;
2226:
2227:
2228: /**

Line 2282: if (funcmode <> wf_engine.eng_run) then

2278: x_progress := 'PO_NEGOTIATIONS4_PVT.Place_SourcingInfoOnReq: 01';
2279: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
2280:
2281: -- Do nothing in cancel or timeout mode
2282: if (funcmode <> wf_engine.eng_run) then
2283:
2284: resultout := wf_engine.eng_null;
2285: return;
2286:

Line 2284: resultout := wf_engine.eng_null;

2280:
2281: -- Do nothing in cancel or timeout mode
2282: if (funcmode <> wf_engine.eng_run) then
2283:
2284: resultout := wf_engine.eng_null;
2285: return;
2286:
2287: end if;
2288:

Line 2377: resultout:=wf_engine.eng_completed || ':' || 'Y';

2373:
2374: END LOOP;
2375:
2376:
2377: resultout:=wf_engine.eng_completed || ':' || 'Y';
2378:
2379: x_progress:='PO_NEGOTIATIONS4_PVT.Place_SourcingInfoOnReq: 02. Result= '||'Y';
2380: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress||sql%rowcount);
2381:

Line 2384: resultout := wf_engine.eng_completed || ':' || 'N';

2380: /* DEBUG */ PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress||sql%rowcount);
2381:
2382: EXCEPTION
2383: WHEN OTHERS THEN
2384: resultout := wf_engine.eng_completed || ':' || 'N';
2385: END Place_SourcingInfoOnReq;
2386:
2387:
2388: /**

Line 2428: if (funcmode <> wf_engine.eng_run) then

2424:
2425: BEGIN
2426:
2427: /*Bug 7517077, assigning value to the resultout parameter, since the next activity gets driven based on this*/
2428: if (funcmode <> wf_engine.eng_run) then
2429: resultout := wf_engine.eng_null;
2430: return;
2431: end if;
2432:

Line 2429: resultout := wf_engine.eng_null;

2425: BEGIN
2426:
2427: /*Bug 7517077, assigning value to the resultout parameter, since the next activity gets driven based on this*/
2428: if (funcmode <> wf_engine.eng_run) then
2429: resultout := wf_engine.eng_null;
2430: return;
2431: end if;
2432:
2433: -- Get the org context

Line 2505: wf_engine.CreateProcess

2501: po_wf_debug_pkg.insert_debug(Itemtype,Itemkey,x_progress);
2502:
2503: IF ( l_ItemType is NOT NULL ) AND
2504: ( l_ItemKey is NOT NULL) THEN
2505: wf_engine.CreateProcess
2506: (itemtype => l_itemtype,
2507: itemkey => l_itemkey,
2508: process => l_workflow_process );
2509:

Line 2530: wf_engine.StartProcess(itemtype => l_itemtype,

2526:
2527: x_progress := '40: Launch_CreateDocWF: Kicking off StartProcess ';
2528: po_wf_debug_pkg.insert_debug(Itemtype,Itemkey,x_progress);
2529:
2530: wf_engine.StartProcess(itemtype => l_itemtype,
2531: itemkey => l_itemkey );
2532: END IF;
2533: /*Bug 7517077, assigning value 'ACTIVITY PERFORMED' to the resultout parameter, since the next activity gets driven based on this*/
2534: resultout := wf_engine.eng_completed || ':' || 'ACTIVITY_PERFORMED';

Line 2534: resultout := wf_engine.eng_completed || ':' || 'ACTIVITY_PERFORMED';

2530: wf_engine.StartProcess(itemtype => l_itemtype,
2531: itemkey => l_itemkey );
2532: END IF;
2533: /*Bug 7517077, assigning value 'ACTIVITY PERFORMED' to the resultout parameter, since the next activity gets driven based on this*/
2534: resultout := wf_engine.eng_completed || ':' || 'ACTIVITY_PERFORMED';
2535: EXCEPTION
2536: WHEN OTHERS THEN
2537: wf_core.context('PO_NEGOTIATIONS4_PVT','Launch_CreateDocWF',
2538: x_progress);