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 795: okc_wf.init_wf_string( wf_engine.GetItemAttrText ( itemtype => G_WF_NAME,

791: P_PROC := wf_engine.GetItemAttrText (itemtype => G_WF_NAME,
792: itemkey => P_KEY,
793: aname => p_attr_name);
794: -- marat start (bug#2477385)
795: okc_wf.init_wf_string( wf_engine.GetItemAttrText ( itemtype => G_WF_NAME,
796: itemkey => P_KEY,
797: aname => 'EXTRA_ATTR_TEXT'));
798: -- marat end
799: P_VERSION := wf_engine.GetItemAttrNumber (itemtype => G_WF_NAME,

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

1605:
1606: --
1607: -- create process
1608: --
1609: select to_char(okc_wf_notify_s1.nextval) into l_key from dual;
1610: wf_engine.CreateProcess( ItemType => G_WF_NAME,
1611: ItemKey => L_KEY,
1612: process => G_PROCESS_NAME);
1613: wf_engine.SetItemUserKey ( ItemType => G_WF_NAME,

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

2065: /* End of code change */
2066: --
2067: -- create process
2068: --
2069: select to_char(okc_wf_notify_s1.nextval) into l_key from dual;
2070:
2071: IF (l_debug = 'Y') THEN
2072: okc_debug.Log('40: l_key : '||l_key,2);
2073: okc_debug.Log('40: G_WF_NAME : '||G_WF_NAME,2);

Line 2142: avalue => okc_wf.get_wf_string);

2138: -- marat start (bug#2477385)
2139: wf_engine.SetItemAttrText ( itemtype => G_WF_NAME,
2140: itemkey => L_KEY,
2141: aname => 'EXTRA_ATTR_TEXT',
2142: avalue => okc_wf.get_wf_string);
2143: -- marat end
2144: /* - we'll use EXTRA_ATTR_TEXT item attr for sending outcome params to wf process
2145: -- (bug#2477385)
2146: -- below commented out by marat