DBA Data[Home] [Help]

APPS.ECX_STANDARD dependencies on WF_EVENT_T

Line 63: p_event in out nocopy WF_EVENT_T)

59:
60: procedure prepareWS(itemtype in VARCHAR2,
61: itemkey in VARCHAR2,
62: actid in NUMBER,
63: p_event in out nocopy WF_EVENT_T)
64: is
65:
66: i_ws_soapaction VARCHAR2(240) := NULL;
67: i_ws_svc_namespace VARCHAR2(240) := NULL;

Line 77: i_parameterList := wf_event_t.getParameterList(p_event);

73:
74: begin
75:
76: if (p_event is not null) then
77: i_parameterList := wf_event_t.getParameterList(p_event);
78:
79: -- Retrieve or default Web Services related event parameters if exists
80: i_ws_soapaction := Wf_Engine.GetActivityAttrText(itemtype, itemkey, actid, 'SOAPACTION', true);
81: if (i_ws_soapaction is null) then

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

461: x_from_agt wf_agent_t := wf_agent_t(null,null);
462: x_to_agt wf_agent_t := wf_agent_t(null,null);
463:
464: begin
465: wf_event_t.initialize(ecx_utils.g_event);
466: /**
467: Set the Event Data with the passed in parameters,
468: so that the Business Event can be raised.
469: **/

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

556: document_id := wf_event.getValueForParameter('ECX_DOCUMENT_ID',p_parameter_list);
557:
558: if ecx_utils.g_event is null
559: then
560: wf_event_t.initialize(ecx_utils.g_event);
561: end if;
562:
563: ecx_utils.g_event.setparameterlist(p_parameter_list);
564:

Line 612: i_inevent wf_event_t;

608: i_outpayload clob;
609: i_log_file varchar2(2000);
610: i_ret_code pls_integer;
611: i_errbuf varchar2(2000);
612: i_inevent wf_event_t;
613: i_outevent wf_event_t;
614: ecx_process_xml exception;
615: i_error_type pls_integer;
616: aname_error_type varchar2(30);

Line 613: i_outevent wf_event_t;

609: i_log_file varchar2(2000);
610: i_ret_code pls_integer;
611: i_errbuf varchar2(2000);
612: i_inevent wf_event_t;
613: i_outevent wf_event_t;
614: ecx_process_xml exception;
615: i_error_type pls_integer;
616: aname_error_type varchar2(30);
617: aname_log_file varchar2(30);

Line 707: i_event wf_event_t;

703: i_outpayload clob;
704: i_log_file varchar2(2000);
705: i_ret_code pls_integer;
706: i_errbuf varchar2(2000);
707: i_event wf_event_t;
708: ecx_process_xml exception;
709: i_error_type pls_integer;
710: aname_error_type varchar2(30);
711: aname_log_file varchar2(30);

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

1010: global variable for ecx_utils.g_event or create a local instance.
1011: **/
1012: begin
1013: -- Initialize the Event before using it.
1014: wf_event_t.initialize(ecx_utils.g_event);
1015: ecx_utils.g_event := Wf_Engine.GetItemAttrEvent(itemtype, itemkey,'ECX_EVENT_MESSAGE');
1016: exception
1017: when others then
1018: if ecx_utils.g_event is null

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

1016: exception
1017: when others then
1018: if ecx_utils.g_event is null
1019: then
1020: wf_event_t.initialize(ecx_utils.g_event);
1021: end if;
1022: end;
1023:
1024:

Line 1152: i_event wf_event_t;

1148: parameter4 varchar2(240);
1149: parameter5 varchar2(240);
1150: event_name varchar2(240);
1151: event_key varchar2(240);
1152: i_event wf_event_t;
1153: aname varchar2(30);
1154: evt_name varchar2(30);
1155: atype varchar2(8);
1156: aformat varchar2(240);

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

1259: Populate the Parameters in the original event Object being passed. if it is null , initialize and create
1260: a new Instance and populate the variables
1261: if i_event is null
1262: then
1263: wf_event_t.initialize(ecx_utils.g_event);
1264: else
1265: ecx_utils.g_event := i_event;
1266: end if;
1267: **/

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

1266: end if;
1267: **/
1268:
1269: /* Always initialize ecx_utils.g_event before using it */
1270: wf_event_t.initialize(ecx_utils.g_event);
1271: if i_event is not null
1272: then
1273: ecx_utils.g_event := i_event;
1274: End If;

Line 1562: i_evt wf_event_t;

1558: parameter4 varchar2(240);
1559: parameter5 varchar2(240);
1560:
1561: /* Variabledeclarations for Bug 2120165*/
1562: i_evt wf_event_t;
1563: i_param_name varchar2(30);
1564: i_param_value varchar2(2000);
1565: counter number ;
1566: /* End of changes for bug 2120165*/

Line 1570: i_event wf_event_t;

1566: /* End of changes for bug 2120165*/
1567:
1568: event_name varchar2(240);
1569: event_key varchar2(240);
1570: i_event wf_event_t;
1571: aevent_name varchar2(240);
1572: aname varchar2(30);
1573: evt_name varchar2(30);
1574: atype varchar2(8);

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

1639: Populate the Parameters in the original event Object being passed. if it is null , initialize and create
1640: a new Instance and populate the variables
1641: if i_event is null
1642: then
1643: wf_event_t.initialize(ecx_utils.g_event);
1644: else
1645: ecx_utils.g_event := i_event;
1646: end if;
1647: **/

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

1646: end if;
1647: **/
1648:
1649: /*Always initialize ecx_utils.g_event before using it */
1650: wf_event_t.initialize(ecx_utils.g_event);
1651: if i_event is not null
1652: then
1653: ecx_utils.g_event := i_event;
1654: End If;