DBA Data[Home] [Help]

APPS.ECX_DOCUMENT dependencies on WF_EVENT

Line 1188: wf_event_t.initialize(ecx_utils.g_event);

1184:
1185: /** check for the Event Object. If null , initialize it **/
1186: if ecx_utils.g_event is null
1187: then
1188: wf_event_t.initialize(ecx_utils.g_event);
1189: end if;
1190: i_parameterlist := wf_event_t.getParameterList(ecx_utils.g_event);
1191: if(l_statementEnabled) then
1192: if i_parameterList is not null

Line 1190: i_parameterlist := wf_event_t.getParameterList(ecx_utils.g_event);

1186: if ecx_utils.g_event is null
1187: then
1188: wf_event_t.initialize(ecx_utils.g_event);
1189: end if;
1190: i_parameterlist := wf_event_t.getParameterList(ecx_utils.g_event);
1191: if(l_statementEnabled) then
1192: if i_parameterList is not null
1193: then
1194: for i in i_parameterList.FIRST..i_parameterList.LAST

Line 1834: i_event wf_event_t;

1830: c1_rec c1%ROWTYPE;
1831:
1832: o_retcode pls_integer;
1833: o_retmsg varchar2(2000):= null;
1834: i_event wf_event_t;
1835: i_from_agt wf_agent_t := wf_agent_t(NULL, NULL);
1836: i_system varchar2(200);
1837: l_protocol_type varchar2(2000);
1838: l_protocol_address varchar2(2000);

Line 1946: wf_event_t.initialize(i_event);

1942: l_password := c1_rec.password;
1943: end if;
1944:
1945: -- call wf_ecx_qh.enqueue with the correct parameters
1946: wf_event_t.initialize(i_event);
1947: i_event.addParameterToList('RESEND', 'Y');
1948: i_event.addParameterToList('ECX_MSG_ID', c1_rec.msgid);
1949: i_event.addParameterToList('MESSAGE_TYPE', c1_rec.message_type);
1950: i_event.addParameterToList('MESSAGE_STANDARD', c1_rec.message_standard);

Line 2006: wf_event.send(i_event);

2002: where guid = wf_core.translate('WF_SYSTEM_GUID');
2003:
2004: i_from_agt.setsystem(i_system);
2005: i_event.setFromAgent(i_from_agt);
2006: wf_event.send(i_event);
2007: -- MLS
2008: ecx_debug.setErrorInfo(0,10,'ECX_RESEND_TRIGGERED');
2009: retcode := ecx_utils.i_ret_code;
2010: errmsg := ecx_utils.i_errbuf;