DBA Data[Home] [Help]

APPS.CSI_INV_DISCREPANCY_PKG dependencies on WF_ENGINE

Line 1234: WF_ENGINE.CreateProcess

1230: From dual;
1231:
1232: l_itemkey := 'CSI-'||l_itemkey_seq;
1233:
1234: WF_ENGINE.CreateProcess
1235: (
1236: itemtype => l_itemtype,
1237: itemkey => l_itemkey,
1238: process => l_process

Line 1241: WF_ENGINE.SetItemAttrText

1237: itemkey => l_itemkey,
1238: process => l_process
1239: );
1240:
1241: WF_ENGINE.SetItemAttrText
1242: (
1243: itemtype => l_itemtype,
1244: itemkey => l_itemkey,
1245: aname => '#FROM_ROLE',

Line 1249: WF_ENGINE.SetItemAttrText

1245: aname => '#FROM_ROLE',
1246: avalue => 'Oracle Installed Base Admin'
1247: );
1248:
1249: WF_ENGINE.SetItemAttrText
1250: (
1251: itemtype => l_itemtype,
1252: itemkey => l_itemkey,
1253: aname => 'CSI_TEXT',

Line 1257: WF_ENGINE.SetItemAttrText

1253: aname => 'CSI_TEXT',
1254: avalue => p_msg
1255: );
1256:
1257: WF_ENGINE.SetItemAttrText
1258: (
1259: itemtype => l_itemtype,
1260: itemkey => l_itemkey,
1261: aname => 'REQ_ID',

Line 1265: WF_ENGINE.SetItemAttrText

1261: aname => 'REQ_ID',
1262: avalue => p_req_id
1263: );
1264:
1265: WF_ENGINE.SetItemAttrText
1266: (
1267: itemtype => l_itemtype,
1268: itemkey => l_itemkey,
1269: aname => 'CSI_RECV',

Line 1273: WF_ENGINE.StartProcess

1269: aname => 'CSI_RECV',
1270: avalue => 'Oracle Installed Base Admin'
1271: );
1272:
1273: WF_ENGINE.StartProcess
1274: (
1275: itemtype => l_itemtype,
1276: itemkey => l_itemkey
1277: );