DBA Data[Home] [Help]

APPS.ECX_OUTBOUND dependencies on WF_EVENT

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

924:
925: /** check for the Event Object. If null , initialize it **/
926: if ecx_utils.g_event is null
927: then
928: wf_event_t.initialize(ecx_utils.g_event);
929: end if;
930: i_parameterlist := wf_event_t.getParameterList(ecx_utils.g_event);
931: if(l_statementEnabled) then
932: if i_parameterList is not null

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

926: if ecx_utils.g_event is null
927: then
928: wf_event_t.initialize(ecx_utils.g_event);
929: end if;
930: i_parameterlist := wf_event_t.getParameterList(ecx_utils.g_event);
931: if(l_statementEnabled) then
932: if i_parameterList is not null
933: then
934: for i in i_parameterList.FIRST..i_parameterList.LAST

Line 1095: /* If the input wf_event_t object passed is null , the following loop raises an exception.

1091: then
1092: ecx_utils.g_stack(i_stack_pos).variable_value := i_tp_type;
1093: end if;
1094:
1095: /* If the input wf_event_t object passed is null , the following loop raises an exception.
1096: so initialize the i_event_obj
1097: IF ( i_event_obj IS NULL ) THEN
1098: WF_EVENT_T.initialize(i_event_obj);
1099: END IF; */

Line 1098: WF_EVENT_T.initialize(i_event_obj);

1094:
1095: /* If the input wf_event_t object passed is null , the following loop raises an exception.
1096: so initialize the i_event_obj
1097: IF ( i_event_obj IS NULL ) THEN
1098: WF_EVENT_T.initialize(i_event_obj);
1099: END IF; */
1100:
1101: -- Get the Parameter List from the Global Event Message Object. Iterate through it and populate the
1102: -- Global variables in the Engine Stack

Line 1535: ecx_debug.log(l_statement, 'Calling WF_EVENT.Send for Enqueue', i_method_name);

1531: i_from_agt.setsystem(i_system);
1532: ecx_utils.g_event.setFromAgent(i_from_agt);
1533:
1534: if(l_statementEnabled) then
1535: ecx_debug.log(l_statement, 'Calling WF_EVENT.Send for Enqueue', i_method_name);
1536: end if;
1537: wf_event.send(ecx_utils.g_event);
1538: ecx_errorlog.outbound_log(ecx_utils.g_event);
1539:

Line 1537: wf_event.send(ecx_utils.g_event);

1533:
1534: if(l_statementEnabled) then
1535: ecx_debug.log(l_statement, 'Calling WF_EVENT.Send for Enqueue', i_method_name);
1536: end if;
1537: wf_event.send(ecx_utils.g_event);
1538: ecx_errorlog.outbound_log(ecx_utils.g_event);
1539:
1540: if (upper(i_destination_type) = 'SOAP') or
1541: (upper(i_destination_type) = 'JMS') then

Line 1542: i_msgid := wf_event.g_msgid; -- JMS QH store enqueue msgid in wf_event.g_msgid

1538: ecx_errorlog.outbound_log(ecx_utils.g_event);
1539:
1540: if (upper(i_destination_type) = 'SOAP') or
1541: (upper(i_destination_type) = 'JMS') then
1542: i_msgid := wf_event.g_msgid; -- JMS QH store enqueue msgid in wf_event.g_msgid
1543: else
1544: i_msgid := ecx_out_wf_qh.msgid;
1545: end if;
1546:

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

1706: **/
1707:
1708: if ecx_utils.g_event is null
1709: then
1710: wf_event_t.initialize(ecx_utils.g_event);
1711:
1712: end if;
1713:
1714: /* Add the above Parameters to the Global Event Message Object