DBA Data[Home] [Help]

APPS.WFJ_ENGINE dependencies on HTP

Line 26: htp.p('Success');

22: aname in varchar2) is
23:
24: begin
25: Wf_Engine.AddItemAttr(itemtype, itemkey, aname);
26: htp.p('Success');
27: return;
28: exception
29: when others then
30: Wfj_Engine.Error;

Line 41: htp.p('Success');

37: aname in varchar2,
38: avalue in varchar2) is
39: begin
40: Wf_Engine.SetItemAttrText(itemtype, itemkey, aname, avalue);
41: htp.p('Success');
42: return;
43: exception
44: when others then
45: Wfj_Engine.Error;

Line 56: htp.p('Success');

52: aname in varchar2,
53: avalue in number) is
54: begin
55: Wf_Engine.SetItemAttrNumber(itemtype, itemkey, aname, avalue);
56: htp.p('Success');
57: return;
58: exception
59: when others then
60: Wfj_Engine.Error;

Line 71: htp.p('Success');

67: aname in varchar2,
68: avalue in date) is
69: begin
70: Wf_Engine.SetItemAttrDate(itemtype, itemkey, aname, avalue);
71: htp.p('Success');
72: return;
73: exception
74: when others then
75: Wfj_Engine.Error;

Line 86: htp.p('Success');

82: aname in varchar2,
83: documentid in varchar2) is
84: begin
85: Wf_Engine.SetItemAttrDocument(itemtype, itemkey, aname, documentid);
86: htp.p('Success');
87: return;
88: exception
89: when others then
90: Wfj_Engine.Error;

Line 99: htp.p('Success');

95: itemkey in varchar2,
96: owner in varchar2) is
97: begin
98: Wf_Engine.SetItemOwner(itemtype, itemkey, owner);
99: htp.p('Success');
100: return;
101: exception
102: when others then
103: Wfj_Engine.Error;

Line 113: htp.p('Success');

109: itemkey in varchar2,
110: userkey In varchar2) is
111: begin
112: Wf_Engine.SetItemUserKey(itemtype, itemkey, userkey);
113: htp.p('Success');
114: return;
115: exception
116: when others then
117: Wfj_Engine.Error;

Line 127: htp.p('Success');

123: itemkey in varchar2,
124: process in varchar2) is
125: begin
126: Wf_Engine.CreateProcess(itemtype, itemkey, process);
127: htp.p('Success');
128: return;
129: exception
130: when others then
131: Wfj_Engine.Error;

Line 140: htp.p('Success');

136: procedure StartProcess(itemtype in varchar2,
137: itemkey in varchar2) is
138: begin
139: Wf_Engine.StartProcess(itemtype, itemkey);
140: htp.p('Success');
141: return;
142: exception
143: when others then
144: Wfj_Engine.Error;

Line 155: htp.p('Success');

151: itemkey in varchar2,
152: process in varchar2) is
153: begin
154: Wf_Engine.SuspendProcess(itemtype, itemkey, process);
155: htp.p('Success');
156: return;
157: exception
158: when others then
159: Wfj_Engine.Error;

Line 170: htp.p('Success');

166: process in varchar2,
167: result in varchar2) is
168: begin
169: Wf_Engine.AbortProcess(itemtype, itemkey, process, result);
170: htp.p('Success');
171: return;
172: exception
173: when others then
174: Wfj_Engine.Error;

Line 184: htp.p('Success');

180: itemkey in varchar2,
181: process in varchar2) is
182: begin
183: Wf_Engine.ResumeProcess(itemtype, itemkey, process);
184: htp.p('Success');
185: return;
186: exception
187: when others then
188: Wfj_Engine.Error;

Line 199: htp.p('Success');

195: activity in varchar2,
196: performer in varchar2) is
197: begin
198: Wf_Engine.AssignActivity(itemtype, itemkey, activity, performer);
199: htp.p('Success');
200: return;
201: exception
202: when others then
203: Wfj_Engine.Error;