DBA Data[Home] [Help]

APPS.OE_SCH_CONC_REQUESTS dependencies on WF_ENGINE

Line 436: * and notified status, call wf_engine to complete the activity.

432: OE_DEBUG_PUB.Add('Schedule date'||l_apply_sch_date,1);
433: END IF;
434: /* When user does not specifiy any parameters, we drive the scheduling
435: * through workflow. Pick up all the lines which are schedule eligible
436: * and notified status, call wf_engine to complete the activity.
437: * If value is passed through any of the parameters, then get the header and
438: * line records and call wf_engine.
439: */
440: IF p_order_number_low IS NULL AND

Line 438: * line records and call wf_engine.

434: /* When user does not specifiy any parameters, we drive the scheduling
435: * through workflow. Pick up all the lines which are schedule eligible
436: * and notified status, call wf_engine to complete the activity.
437: * If value is passed through any of the parameters, then get the header and
438: * line records and call wf_engine.
439: */
440: IF p_order_number_low IS NULL AND
441: p_order_number_high IS NULL AND
442: p_request_date_low IS NULL AND

Line 512: wf_engine.CompleteActivityInternalName

508: FROM oe_order_lines_all
509: WHERE line_id = to_number(l_wf_item_rec(K).ITEM_KEY)
510: FOR UPDATE NOWAIT;
511:
512: wf_engine.CompleteActivityInternalName
513: ('OEOL',
514: l_wf_item_rec(k).item_key,
515: 'SCHEDULING_ELIGIBLE',
516: 'COMPLETE',

Line 963: wf_engine.CompleteActivityInternalName ('OEOL',

959: INTO l_locked_line_id
960: FROM oe_order_lines_all
961: WHERE line_id = l_line_id
962: FOR UPDATE NOWAIT;
963: wf_engine.CompleteActivityInternalName ('OEOL',
964: to_char(l_line_id),
965: 'SCHEDULING_ELIGIBLE',
966: 'COMPLETE',
967: TRUE ); --15870313

Line 1264: wf_engine.CompleteActivityInternalName

1260: END IF;
1261:
1262: BEGIN
1263: -- COMPLETING ACTIVITY
1264: wf_engine.CompleteActivityInternalName
1265: ('OEOL',
1266: to_char(M.line_id),
1267: 'SCHEDULING_ELIGIBLE',
1268: 'COMPLETE',

Line 1283: wf_engine.CompleteActivityInternalName

1279:
1280:
1281: BEGIN
1282: -- COMPLETING ACTIVITY
1283: wf_engine.CompleteActivityInternalName
1284: ('OEOL',
1285: to_char(l_line_id),
1286: 'SCHEDULING_ELIGIBLE',
1287: 'COMPLETE',