DBA Data[Home] [Help]

APPS.WF_NOTIFICATION dependencies on WF_EVENT_T

Line 3701: attr_evalue wf_event_t;

3697: attr_tvalue varchar2(4000);
3698: attr_nvalue number;
3699: attr_dvalue date;
3700: -- Bug 2376033
3701: attr_evalue wf_event_t;
3702: -- Bug 2283697
3703: l_parameterlist wf_parameter_list_t := wf_parameter_list_t();
3704: -- the following variables for Dynamic SQL
3705: sqlbuf varchar2(2000);

Line 3819: wf_event_t.initialize(attr_evalue);

3815: end if;
3816:
3817: -- Bug 2376033 initialize event to fetch value using cb
3818: if (attr_type = 'EVENT') then
3819: wf_event_t.initialize(attr_evalue);
3820: end if;
3821:
3822: -- If there is a cb defined and the default vtype is ITEMATTR
3823: -- then call the cb to fetch possible item attribute value.

Line 10171: l_event wf_event_t;

10167: defer_response in varchar2 default null)
10168: is
10169:
10170: l_eventname varchar2(60) := 'oracle.apps.wf.notification.wl.response.message';
10171: l_event wf_event_t;
10172: l_parameterlist wf_parameter_list_t := wf_parameter_list_t() ;
10173: l_agent wf_agent_t := null ;
10174:
10175: l_itemType WF_NOTIFICATIONS.MESSAGE_TYPE%TYPE := null;

Line 10218: wf_event_t.initialize(l_event);

10214: l_agent := wf_agent_t(null, null);
10215: l_agent.name := 'WF_NOTIFICATION_IN';
10216: l_agent.SYSTEM := wf_event.local_system_name;
10217:
10218: wf_event_t.initialize(l_event);
10219: l_event.event_name := l_eventname;
10220: l_event.event_key := nid;
10221: l_event.setFromAgent(l_agent);
10222: l_event.setPriority(1);