DBA Data[Home] [Help]

APPS.PO_WF_UTIL_PKG dependencies on WF_ENGINE

Line 25: wf_engine.SetItemAttrText (itemtype => itemtype,

21: avalue in varchar2) is
22:
23: BEGIN
24:
25: wf_engine.SetItemAttrText (itemtype => itemtype,
26: itemkey => itemkey,
27: aname => aname,
28: avalue => avalue);
29:

Line 45: wf_engine.SetItemAttrText (itemtype => G_ITEM_TYPE,

41: -- PO AME Project
42: procedure SetItemAttrText(aname in varchar2,
43: avalue in varchar2) is
44: BEGIN
45: wf_engine.SetItemAttrText (itemtype => G_ITEM_TYPE,
46: itemkey => G_ITEM_KEY,
47: aname => aname,
48: avalue => avalue);
49:

Line 69: wf_engine.SetItemAttrNumber (itemtype => itemtype,

65: avalue in number) is
66:
67: BEGIN
68:
69: wf_engine.SetItemAttrNumber (itemtype => itemtype,
70: itemkey => itemkey,
71: aname => aname,
72: avalue => avalue);
73:

Line 91: wf_engine.SetItemAttrNumber (itemtype => G_ITEM_TYPE,

87: avalue in number) is
88:
89: BEGIN
90:
91: wf_engine.SetItemAttrNumber (itemtype => G_ITEM_TYPE,
92: itemkey => G_ITEM_KEY,
93: aname => aname,
94: avalue => avalue);
95:

Line 115: wf_engine.SetItemAttrDate (itemtype => itemtype,

111: avalue in date) is
112:
113: BEGIN
114:
115: wf_engine.SetItemAttrDate (itemtype => itemtype,
116: itemkey => itemkey,
117: aname => aname,
118: avalue => avalue);
119:

Line 140: wf_engine.SetItemAttrDocument (itemtype => itemtype,

136: documentid in varchar2) is
137:
138: BEGIN
139:
140: wf_engine.SetItemAttrDocument (itemtype => itemtype,
141: itemkey => itemkey,
142: aname => aname,
143: documentid => documentid);
144:

Line 165: return wf_engine.GetItemAttrText(itemtype => itemtype,

161: return varchar2 is
162:
163: BEGIN
164:
165: return wf_engine.GetItemAttrText(itemtype => itemtype,
166: itemkey => itemkey,
167: aname => aname,
168: ignore_notfound => TRUE);
169:

Line 188: return wf_engine.GetItemAttrText(itemtype => G_ITEM_TYPE,

184: return varchar2 is
185:
186: BEGIN
187:
188: return wf_engine.GetItemAttrText(itemtype => G_ITEM_TYPE,
189: itemkey => G_ITEM_KEY,
190: aname => aname,
191: ignore_notfound => TRUE);
192:

Line 212: return wf_engine.GetItemAttrNumber(itemtype => itemtype,

208: return number is
209:
210: BEGIN
211:
212: return wf_engine.GetItemAttrNumber(itemtype => itemtype,
213: itemkey => itemkey,
214: aname => aname,
215: ignore_notfound => TRUE);
216:

Line 236: return wf_engine.GetItemAttrNumber(itemtype => G_ITEM_TYPE,

232: return number is
233:
234: BEGIN
235:
236: return wf_engine.GetItemAttrNumber(itemtype => G_ITEM_TYPE,
237: itemkey => G_ITEM_KEY,
238: aname => aname,
239: ignore_notfound => TRUE);
240:

Line 260: return wf_engine.GetItemAttrDate(itemtype => itemtype,

256: return date is
257:
258: BEGIN
259:
260: return wf_engine.GetItemAttrDate(itemtype => itemtype,
261: itemkey => itemkey,
262: aname => aname,
263: ignore_notfound => TRUE);
264:

Line 286: return wf_engine.GetItemAttrDocument(itemtype => itemtype,

282: return VARCHAR2 is
283:
284: BEGIN
285:
286: return wf_engine.GetItemAttrDocument(itemtype => itemtype,
287: itemkey => itemkey,
288: aname => aname,
289: ignore_notfound => TRUE);
290:

Line 313: return wf_engine.GetActivityAttrText(itemtype => itemtype,

309: return varchar2 is
310:
311: BEGIN
312:
313: return wf_engine.GetActivityAttrText(itemtype => itemtype,
314: itemkey => itemkey,
315: actid => actid,
316: aname => aname,
317: ignore_notfound => TRUE);

Line 341: return wf_engine.GetActivityAttrNumber(itemtype => itemtype,

337: return number is
338:
339: BEGIN
340:
341: return wf_engine.GetActivityAttrNumber(itemtype => itemtype,
342: itemkey => itemkey,
343: actid => actid,
344: aname => aname,
345: ignore_notfound => TRUE);

Line 369: return wf_engine.GetActivityAttrDate(itemtype => itemtype,

365: return date is
366:
367: BEGIN
368:
369: return wf_engine.GetActivityAttrDate(itemtype => itemtype,
370: itemkey => itemkey,
371: actid => actid,
372: aname => aname,
373: ignore_notfound => TRUE);

Line 418: WF_ENGINE_UTIL.clearcache;

414:
415: BEGIN
416:
417: l_progress := '000';
418: WF_ENGINE_UTIL.clearcache;
419:
420: l_progress := '010';
421: WF_ACTIVITY.clearcache;
422: