DBA Data[Home] [Help]

APPS.QLTDACTB dependencies on WF_ENGINE

Line 2208: WF_ENGINE.CreateProcess(

2204: FETCH wf_number_of_processes INTO l_wf_process_name;
2205: CLOSE wf_number_of_processes;
2206: END IF;
2207:
2208: WF_ENGINE.CreateProcess(
2209: itemtype => X_WF_ITEMTYPE,
2210: itemkey => l_wf_itemkey,
2211: process => l_wf_process_name);
2212:

Line 2247: WF_ENGINE.SetItemAttrText(

2243:
2244: -- Bug 2671638. Extending support to Sequence and Longcomment datatypes.
2245: IF token_datatype IN (1,4,5) THEN
2246:
2247: WF_ENGINE.SetItemAttrText(
2248: itemtype => X_WF_ITEMTYPE,
2249: itemkey => l_wf_itemkey,
2250: aname => prec.token_name,
2251: avalue => token_value);

Line 2255: WF_ENGINE.SetItemAttrNumber(

2251: avalue => token_value);
2252:
2253: ELSIF token_datatype = 2 THEN
2254:
2255: WF_ENGINE.SetItemAttrNumber(
2256: itemtype => X_WF_ITEMTYPE,
2257: itemkey => l_wf_itemkey,
2258: aname => prec.token_name,
2259: avalue => fnd_number.canonical_to_number(token_value));

Line 2265: WF_ENGINE.SetItemAttrDate(

2261: -- Bug 3179845. Timezone Project. rponnusa Fri Oct 17 10:34:50 PDT 2003
2262: -- Added datetime data type
2263: ELSIF token_datatype IN (3,6)THEN
2264:
2265: WF_ENGINE.SetItemAttrDate(
2266: itemtype => X_WF_ITEMTYPE,
2267: itemkey => l_wf_itemkey,
2268: aname => prec.token_name,
2269: avalue => fnd_date.canonical_to_date(token_value));

Line 2282: WF_ENGINE.SetItemAttrNumber(

2278: -- Bug 2671638. Added following IF. rponnusa Wed Nov 20 04:33:03 PST 2002
2279:
2280: IF l_pca_id_exists THEN
2281:
2282: WF_ENGINE.SetItemAttrNumber(
2283: itemtype => X_WF_ITEMTYPE,
2284: itemkey => l_wf_itemkey,
2285: aname => 'PCA_ID',
2286: avalue => fnd_number.canonical_to_number(X_PCA_ID));

Line 2296: WF_ENGINE.SetItemOwner( itemtype => X_WF_ITEMTYPE,

2292: fetch f_user_name into l_user_name;
2293: close f_user_name;
2294:
2295: -- Set the wf owner
2296: WF_ENGINE.SetItemOwner( itemtype => X_WF_ITEMTYPE,
2297: itemkey => l_wf_itemkey,
2298: owner => l_user_name );
2299:
2300: WF_ENGINE.StartProcess(

Line 2300: WF_ENGINE.StartProcess(

2296: WF_ENGINE.SetItemOwner( itemtype => X_WF_ITEMTYPE,
2297: itemkey => l_wf_itemkey,
2298: owner => l_user_name );
2299:
2300: WF_ENGINE.StartProcess(
2301: itemtype => X_WF_ITEMTYPE,
2302: itemkey => l_wf_itemkey);
2303:
2304: