DBA Data[Home] [Help]

APPS.OKS_EXTWARPRGM_OSO_PVT dependencies on WF_ENGINE

Line 912: WF_ENGINE.CreateProcess

908: If upper(l_notify) = 'YES' Then
909:
910: l_itemkey := 'OKS-'||to_char(sysdate,'MMDDYYYYHH24MISS');
911:
912: WF_ENGINE.CreateProcess
913: (
914: itemtype => l_itemtype,
915: itemkey => l_itemkey,
916: process => l_process

Line 919: WF_ENGINE.SetItemAttrText

915: itemkey => l_itemkey,
916: process => l_process
917: );
918:
919: WF_ENGINE.SetItemAttrText
920: (
921: itemtype => l_itemtype,
922: itemkey => l_itemkey,
923: aname => 'MSG_TXT',

Line 927: WF_ENGINE.SetItemAttrText

923: aname => 'MSG_TXT',
924: avalue => p_msg
925: );
926:
927: WF_ENGINE.SetItemAttrText
928: (
929: itemtype => l_itemtype,
930: itemkey => l_itemkey,
931: aname => 'MSG_RECV',

Line 936: WF_ENGINE.StartProcess

932: avalue => l_receiver
933: );
934:
935:
936: WF_ENGINE.StartProcess
937: (
938: itemtype => l_itemtype,
939: itemkey => l_itemkey
940: );