DBA Data[Home] [Help]

APPS.CN_SCA_WF_CUST_PKG dependencies on WF_ENGINE

Line 19: -- by the WF Engine.

15: -- Version : Current version 1.0
16: -- Previous version
17: -- Initial version 1.0
18: -- Notes : Executes CUSTOM Revenue Distribution Function. Called
19: -- by the WF Engine.
20: -- itemType - A valid item type from WF_ITEM_TYPES table.
21: -- itemKey - A string generated from application object's
22: -- PRIMARY key.
23: -- actId - The function activity (instance ID).

Line 44: resultOut := wf_engine.eng_completed || ':' || wf_engine.eng_null;

40: -- INSERT CUSTOM CODE HERE
41: -- =======================
42:
43: -- return resultOut, and return control to WF
44: resultOut := wf_engine.eng_completed || ':' || wf_engine.eng_null;
45: RETURN;
46:
47: END IF; -- funcMode = 'RUN'
48:

Line 53: resultOut := wf_engine.eng_completed || ':' || wf_engine.eng_null;

49: -- CANCEL mode
50: IF (funcMode = 'CANCEL') THEN
51:
52: -- return resultOut, and return control to WF
53: resultOut := wf_engine.eng_completed || ':' || wf_engine.eng_null;
54: RETURN;
55:
56: END IF;
57:

Line 59: resultOut := wf_engine.eng_null;

55:
56: END IF;
57:
58: -- ANY OTHER mode (NOT implemented)
59: resultOut := wf_engine.eng_null;
60: RETURN;
61:
62: EXCEPTION
63: WHEN OTHERS THEN

Line 90: -- by the WF Engine.

86: -- Version : Current version 1.0
87: -- Previous version
88: -- Initial version 1.0
89: -- Notes : Executes CUSTOM Transaction Loading Function. Called
90: -- by the WF Engine.
91: -- itemType - A valid item type from WF_ITEM_TYPES table.
92: -- itemKey - A string generated from application object's
93: -- PRIMARY key.
94: -- actId - The function activity (instance ID).

Line 115: resultOut := wf_engine.eng_completed || ':' || wf_engine.eng_null;

111: -- INSERT CUSTOM CODE HERE
112: -- =======================
113:
114: -- return resultOut, and return control to WF
115: resultOut := wf_engine.eng_completed || ':' || wf_engine.eng_null;
116: RETURN;
117:
118: END IF; -- funcMode = 'RUN'
119:

Line 124: resultOut := wf_engine.eng_completed || ':' || wf_engine.eng_null;

120: -- CANCEL mode
121: IF (funcMode = 'CANCEL') THEN
122:
123: -- return resultOut, and return control to WF
124: resultOut := wf_engine.eng_completed || ':' || wf_engine.eng_null;
125: RETURN;
126:
127: END IF;
128:

Line 130: resultOut := wf_engine.eng_null;

126:
127: END IF;
128:
129: -- ANY OTHER mode (NOT implemented)
130: resultOut := wf_engine.eng_null;
131: RETURN;
132:
133: EXCEPTION
134: WHEN OTHERS THEN