DBA Data[Home] [Help]

APPS.IEM_DP_NOTIFICATION_WF_PUB dependencies on WF_ENGINE

Line 24: wf_engine.CreateProcess( ItemType => itemtype,

20: adhoc_role_name VARCHAR2(360);
21:
22: begin
23:
24: wf_engine.CreateProcess( ItemType => itemtype,
25: ItemKey => ItemKey,
26: process => WorkflowProcess );
27:
28: adhoc_role_name := 'Email Center Administor';

Line 33: wf_engine.SetItemAttrText (itemtype => itemtype,

29: adhoc_role := 'IEMDPNTFRECPT'||'-'||TO_CHAR(SYSDATE,'DDMMYYYYHH24MISS');
30:
31: WF_DIRECTORY.CREATEADHOCROLE(adhoc_role,adhoc_role_name,null,null,null,'MAILHTML',null,null,null,'ACTIVE',sysdate);
32:
33: wf_engine.SetItemAttrText (itemtype => itemtype,
34: itemkey => itemkey,
35: aname => 'IEMDPADMIN',
36: -- avalue => adhoc_role );
37: avalue =>'FND_RESP|IEM|EMAIL_CENTER_SSS|STANDARD' );

Line 40: WF_ENGINE.SetItemAttrText(itemtype, ItemKey, 'NTFROM', 'FND_RESP|IEM|EMAIL_CENTER_SSS|STANDARD');--'Oracle Email Center'); --FND_GLOBAL.User_Name);

36: -- avalue => adhoc_role );
37: avalue =>'FND_RESP|IEM|EMAIL_CENTER_SSS|STANDARD' );
38:
39: -- Set the From field:
40: WF_ENGINE.SetItemAttrText(itemtype, ItemKey, 'NTFROM', 'FND_RESP|IEM|EMAIL_CENTER_SSS|STANDARD');--'Oracle Email Center'); --FND_GLOBAL.User_Name);
41: -- invoke an instance of workflow process
42:
43:
44: wf_engine.StartProcess( itemtype => itemtype,

Line 44: wf_engine.StartProcess( itemtype => itemtype,

40: WF_ENGINE.SetItemAttrText(itemtype, ItemKey, 'NTFROM', 'FND_RESP|IEM|EMAIL_CENTER_SSS|STANDARD');--'Oracle Email Center'); --FND_GLOBAL.User_Name);
41: -- invoke an instance of workflow process
42:
43:
44: wf_engine.StartProcess( itemtype => itemtype,
45: itemkey => itemkey );
46:
47:
48: exception