DBA Data[Home] [Help]

APPS.OE_WF_UPGRADE_UTIL dependencies on WF_ENGINE

Line 32: l_Scolumn_name := WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid, 'S_COLUMN');

28: -- past custom activity.
29:
30: -- Find out What S column the custom activity is based on ...
31:
32: l_Scolumn_name := WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid, 'S_COLUMN');
33:
34: l_Scolumn_value := OE_ORDER_UPGRADE_UTIL.Get_entity_Scolumn_value(itemtype, itemkey, l_Scolumn_name);
35:
36: IF (l_Scolumn_value IS NOT NULL) THEN

Line 39: resultout := wf_engine.eng_notified||':'||wf_engine.eng_null||':'||wf_engine.eng_null;

35:
36: IF (l_Scolumn_value IS NOT NULL) THEN
37: IF (l_Scolumn_value = 18) THEN -- As in eligible
38: -- we set result to NOTIFIED. So that it can be externally completed.
39: resultout := wf_engine.eng_notified||':'||wf_engine.eng_null||':'||wf_engine.eng_null;
40: ELSE -- some other result, prepend with 'UPG_RC_' since that will be the internal name of the lookup.
41: resultout := 'COMPLETE:'||'UPG_RC_'||TO_CHAR(l_Scolumn_value);
42: END IF;
43:

Line 45: resultout := wf_engine.eng_notified||':'||wf_engine.eng_null||':'||wf_engine.eng_null;

41: resultout := 'COMPLETE:'||'UPG_RC_'||TO_CHAR(l_Scolumn_value);
42: END IF;
43:
44: ELSE -- WE SHOULD NEVER COME HERE WHEN THE UPGRADE IS RUNNING. Will return NOTIFIED.
45: resultout := wf_engine.eng_notified||':'||wf_engine.eng_null||':'||wf_engine.eng_null;
46: END IF;
47:
48: RETURN;
49: ELSE -- Not in upgrade mode, so return NOTIFIED. So that it can be externally completed.

Line 52: resultout := wf_engine.eng_notified||':'||wf_engine.eng_null

48: RETURN;
49: ELSE -- Not in upgrade mode, so return NOTIFIED. So that it can be externally completed.
50:
51: -- Return Notified
52: resultout := wf_engine.eng_notified||':'||wf_engine.eng_null
53: ||':'||wf_engine.eng_null;
54:
55: RETURN; -- Order should go thru normal process flow.
56:

Line 53: ||':'||wf_engine.eng_null;

49: ELSE -- Not in upgrade mode, so return NOTIFIED. So that it can be externally completed.
50:
51: -- Return Notified
52: resultout := wf_engine.eng_notified||':'||wf_engine.eng_null
53: ||':'||wf_engine.eng_null;
54:
55: RETURN; -- Order should go thru normal process flow.
56:
57:

Line 133: l_Scolumn_name := WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid, 'S_COLUMN');

129: -- past approval
130:
131: -- Find out What S column the approval is based on ...
132:
133: l_Scolumn_name := WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid, 'S_COLUMN');
134:
135: l_Scolumn_value := OE_ORDER_UPGRADE_UTIL.Get_entity_Scolumn_value(itemtype, itemkey, l_Scolumn_name);
136:
137: -- This activity will have the same look-up as the notification activity with an additional code for

Line 1479: resultout := wf_engine.eng_notified||':'||wf_engine.eng_null||':'||wf_engine.eng_null; -- block workflow

1475: into l_source_type
1476: from oe_order_lines_all
1477: where line_id = to_number(itemkey);
1478: IF l_source_type = 'INTERNAL' THEN
1479: resultout := wf_engine.eng_notified||':'||wf_engine.eng_null||':'||wf_engine.eng_null; -- block workflow
1480: ELSE
1481: resultout := 'COMPLETE:ELIGIBLE';
1482: END IF;
1483: /* end 5247444 */

Line 1487: resultout := wf_engine.eng_notified||':'||wf_engine.eng_null||':'||wf_engine.eng_null;

1483: /* end 5247444 */
1484:
1485: /* resultout := 'COMPLETE:ELIGIBLE'; This was replaced by the code just above for bug fix 5247444 */
1486: ELSE
1487: resultout := wf_engine.eng_notified||':'||wf_engine.eng_null||':'||wf_engine.eng_null;
1488: END IF;
1489:
1490: RETURN;
1491: ELSE -- Not in upgrade mode.