DBA Data[Home] [Help]

APPS.ECX_STANDARD dependencies on WF_EVENT_T

Line 65: p_event in out nocopy WF_EVENT_T)

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

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

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

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

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

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

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

Line 614: i_inevent wf_event_t;

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

Line 615: i_outevent wf_event_t;

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

Line 709: i_event wf_event_t;

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

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

1016: global variable for ecx_utils.g_event or create a local instance.
1017: **/
1018: begin
1019: -- Initialize the Event before using it.
1020: wf_event_t.initialize(ecx_utils.g_event);
1021: ecx_utils.g_event := Wf_Engine.GetItemAttrEvent(itemtype, itemkey,'ECX_EVENT_MESSAGE');
1022: exception
1023: when others then
1024: if ecx_utils.g_event is null

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

1022: exception
1023: when others then
1024: if ecx_utils.g_event is null
1025: then
1026: wf_event_t.initialize(ecx_utils.g_event);
1027: end if;
1028: end;
1029:
1030:

Line 1158: i_event wf_event_t;

1154: parameter4 varchar2(240);
1155: parameter5 varchar2(240);
1156: event_name varchar2(240);
1157: event_key varchar2(240);
1158: i_event wf_event_t;
1159: aname varchar2(30);
1160: evt_name varchar2(30);
1161: atype varchar2(8);
1162: aformat varchar2(240);

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

1265: Populate the Parameters in the original event Object being passed. if it is null , initialize and create
1266: a new Instance and populate the variables
1267: if i_event is null
1268: then
1269: wf_event_t.initialize(ecx_utils.g_event);
1270: else
1271: ecx_utils.g_event := i_event;
1272: end if;
1273: **/

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

1272: end if;
1273: **/
1274:
1275: /* Always initialize ecx_utils.g_event before using it */
1276: wf_event_t.initialize(ecx_utils.g_event);
1277: if i_event is not null
1278: then
1279: ecx_utils.g_event := i_event;
1280: End If;

Line 1568: i_evt wf_event_t;

1564: parameter4 varchar2(240);
1565: parameter5 varchar2(240);
1566:
1567: /* Variabledeclarations for Bug 2120165*/
1568: i_evt wf_event_t;
1569: i_param_name varchar2(30);
1570: i_param_value varchar2(2000);
1571: counter number ;
1572: /* End of changes for bug 2120165*/

Line 1576: i_event wf_event_t;

1572: /* End of changes for bug 2120165*/
1573:
1574: event_name varchar2(240);
1575: event_key varchar2(240);
1576: i_event wf_event_t;
1577: aevent_name varchar2(240);
1578: aname varchar2(30);
1579: evt_name varchar2(30);
1580: atype varchar2(8);

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

1645: Populate the Parameters in the original event Object being passed. if it is null , initialize and create
1646: a new Instance and populate the variables
1647: if i_event is null
1648: then
1649: wf_event_t.initialize(ecx_utils.g_event);
1650: else
1651: ecx_utils.g_event := i_event;
1652: end if;
1653: **/

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

1652: end if;
1653: **/
1654:
1655: /*Always initialize ecx_utils.g_event before using it */
1656: wf_event_t.initialize(ecx_utils.g_event);
1657: if i_event is not null
1658: then
1659: ecx_utils.g_event := i_event;
1660: End If;