DBA Data[Home] [Help]

APPS.OKC_ASYNC_PVT dependencies on OKC_WF

Line 275: select to_char(okc_wf_notify_s1.nextval) into l_key from dual;

271:
272: --
273: -- create process
274: --
275: select to_char(okc_wf_notify_s1.nextval) into l_key from dual;
276:
277: IF (l_debug = 'Y') THEN
278: okc_debug.Log('30: l_key : '||l_key,2);
279: END IF;

Line 833: okc_wf.init_wf_string( wf_engine.GetItemAttrText ( itemtype => G_WF_NAME,

829: P_PROC := wf_engine.GetItemAttrText (itemtype => G_WF_NAME,
830: itemkey => P_KEY,
831: aname => p_attr_name);
832: -- marat start (bug#2477385)
833: okc_wf.init_wf_string( wf_engine.GetItemAttrText ( itemtype => G_WF_NAME,
834: itemkey => P_KEY,
835: aname => 'EXTRA_ATTR_TEXT'));
836: -- marat end
837: P_VERSION := wf_engine.GetItemAttrNumber (itemtype => G_WF_NAME,

Line 1647: select to_char(okc_wf_notify_s1.nextval) into l_key from dual;

1643:
1644: --
1645: -- create process
1646: --
1647: select to_char(okc_wf_notify_s1.nextval) into l_key from dual;
1648: wf_engine.CreateProcess( ItemType => G_WF_NAME,
1649: ItemKey => L_KEY,
1650: process => G_PROCESS_NAME);
1651: wf_engine.SetItemUserKey ( ItemType => G_WF_NAME,

Line 2107: select to_char(okc_wf_notify_s1.nextval) into l_key from dual;

2103: /* End of code change */
2104: --
2105: -- create process
2106: --
2107: select to_char(okc_wf_notify_s1.nextval) into l_key from dual;
2108:
2109: IF (l_debug = 'Y') THEN
2110: okc_debug.Log('40: l_key : '||l_key,2);
2111: okc_debug.Log('40: G_WF_NAME : '||G_WF_NAME,2);

Line 2180: avalue => okc_wf.get_wf_string);

2176: -- marat start (bug#2477385)
2177: wf_engine.SetItemAttrText ( itemtype => G_WF_NAME,
2178: itemkey => L_KEY,
2179: aname => 'EXTRA_ATTR_TEXT',
2180: avalue => okc_wf.get_wf_string);
2181: -- marat end
2182: /* - we'll use EXTRA_ATTR_TEXT item attr for sending outcome params to wf process
2183: -- (bug#2477385)
2184: -- below commented out by marat