DBA Data[Home] [Help]

APPS.ECX_INBOUND_TRIG SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 32

   SELECT object_type
   INTO   l_tar_obj_type
   FROM   ecx_objects
   WHERE  map_id = p_map_id
   AND    object_id = 2;
Line: 125

	select	attribute_name,
		element_tag_name
	from	ecx_standard_attributes esa,
        	ecx_standards es
	where	es.standard_code = p_standard_code
	and     es.standard_type = nvl(p_standard_type, 'XML')
	and     esa.standard_id = es.standard_id;
Line: 133

i_string	varchar2(2000) := ' update ecx_doclogs set ';
Line: 154

i_attr_rec.DELETE;
Line: 581

select  etd.map_id 		map_id,
	etd.routing_id 		routing_id,
	etd.tp_header_id	tp_header_id,
	etd.confirmation	confirmation
from    ecx_tp_details etd,
	ecx_ext_processes eep,
	ecx_standards es
where   etd.source_tp_location_code 	= p_party_ext_code
and	eep.ext_type			= p_ext_type
and	eep.ext_subtype 		= p_ext_subtype
and     eep.ext_process_id 		= etd.ext_process_id
and	eep.standard_id			= es.standard_id
and	es.standard_code		= p_message_standard
and     es.standard_type                = nvl(p_message_type, 'XML')
and	eep.direction 			= 'IN';
Line: 606

select  etd.tp_header_id	tp_header_id,
	etd.tp_detail_id	tp_detail_id
from    ecx_tp_details etd,
	ecx_ext_processes eep,
	ecx_standards es
where   etd.source_tp_location_code 	= p_party_ext_code
and	eep.ext_type			= p_ext_type
and	eep.ext_subtype 		= p_ext_subtype
and     eep.ext_process_id 		= etd.ext_process_id
and	eep.standard_id			= es.standard_id
and	es.standard_code		= p_message_standard
and     es.standard_type                = nvl(p_message_type, 'XML')
and	eep.direction 			= 'OUT';
Line: 624

select	tp_header_id
from	ecx_tp_details
where	tp_detail_id = p_routing_id;
Line: 824

			select count(1) into i_map_type
			from ecx_objects
			where object_type <> 'DB' and map_id = i_map_id;
Line: 914

						 ecx_debug.log(l_statement,'Update doclogs for Msg Id : ' , m_msgid,i_method_name);
Line: 916

						ecx_errorlog.update_log_document
						(
						 m_msgid,
						 null,
						 'Inbound processing complete.',
						 ecx_utils.g_logfile,
						 null
						);
Line: 1127

		select	es.standard_type		standard_type,
			es.standard_code		standard_code,
			source_tp_location_code 	source,
			external_tp_location_code 	destination,
			protocol_type,
                	protocol_address,
			username,
			password,
			hub_user_id,
			eep.ext_type	ext_type,
			eep.ext_subtype	ext_subtype,
                        et.transaction_type,
                        et.transaction_subtype,
                        eth.party_id,
                        eth.party_site_id,
                        eth.party_type
        	into    i_standard_type,
			i_standard_code,
			i_source_code,
			i_destination_code,
			i_destination_type,
                	i_destination_address,
			i_username,
			i_password,
			i_hub_user_id,
			i_ext_type,
			i_ext_subtype,
                        i_int_type,
                        i_int_subtype,
                        i_party_id,
                        i_party_site_id,
                        i_party_type
		from 	ecx_tp_details 		etd,
			ecx_ext_processes 	eep,
			ecx_standards		es,
                        ecx_transactions        et,
                        ecx_tp_headers          eth
        	where   etd.tp_detail_id = i_tp_detail_id
		and	es.standard_id = eep.standard_id
		and	eep.ext_process_id = etd.ext_process_id
                and     eep.transaction_id = et.transaction_id
                and     eep.direction = 'OUT'
                and     etd.tp_header_id = eth.tp_header_id;
Line: 1179

			select	hub_entity_code,
				protocol_type,
				protocol_address,
				username,
				password
			into	i_source_code,
				i_destination_type,
                		i_destination_address,
				i_username,
				i_password
			from	ecx_hubs eh,
				ecx_hub_users ehu
			where	eh.hub_id = ehu.hub_id
			and	ehu.hub_user_id = i_hub_user_id;
Line: 1256

        select  name
        into    i_system
        from    wf_systems
        where   guid = wf_core.translate('WF_SYSTEM_GUID');
Line: 1368

		select	es.standard_type		standard_type,
			es.standard_code		standard_code,
			source_tp_location_code 	source,
			external_tp_location_code 	destination,
			protocol_type,
                	protocol_address,
			username,
			password,
			hub_user_id,
			eep.ext_type	ext_type,
                        eep.ext_subtype ext_subtype
        	into    i_standard_type,
			i_standard_code,
			i_source_code,
			i_destination_code,
			i_destination_type,
                	i_destination_address,
			i_username,
			i_password,
			i_hub_user_id,
			i_ext_type,
			i_ext_subtype
		from 	ecx_tp_details 		etd,
			ecx_ext_processes 	eep,
			ecx_standards		es
        	where   etd.tp_detail_id = i_tp_detail_id
		and	es.standard_id = eep.standard_id
		and	eep.ext_process_id = etd.ext_process_id;
Line: 1406

			select	hub_entity_code,
				protocol_type,
				protocol_address,
				username,
				password
			into	i_source_code,
				i_destination_type,
                		i_destination_address,
				i_username,
				i_password
			from	ecx_hubs eh,
				ecx_hub_users ehu
			where	eh.hub_id = ehu.hub_id
			and	ehu.hub_user_id =  i_hub_user_id;
Line: 1495

           select party_type
           into   i_party_type
           from   ecx_tp_headers eth,
                  ecx_tp_details etd
           where  eth.tp_header_id = etd.tp_header_id
           and    etd.tp_detail_id = i_tp_detail_id;
Line: 1790

select  ecx_output_runs_s.NEXTVAL
from    dual;
Line: 1798

select  message_standard,
        message_type,
        transaction_type,
        transaction_subtype,
        party_site_id,
        payload,
        document_number,
        attribute3,
        internal_control_number
from    ecx_doclogs
where   msgid = p_msgid
for update;
Line: 1845

                select  standard_id
                into    ecx_utils.g_standard_id
                from    ecx_standards
                where   standard_code = m_message_standard
                and     standard_type = nvl(m_message_type, 'XML');
Line: 1939

                select  standard_id
                into    ecx_utils.g_standard_id
                from    ecx_standards
                where   standard_code = m_message_standard
                and     standard_type = nvl(m_message_type, 'XML');
Line: 2045

select  ecx_output_runs_s.NEXTVAL
from    dual;
Line: 2054

select	message_standard,
        message_type,
	transaction_type,
	transaction_subtype,
	party_site_id,
	payload,
	document_number,
	attribute3,
	internal_control_number
from	ecx_doclogs
where	msgid = p_msgid
for update;
Line: 2168

		select	standard_id
		into	ecx_utils.g_standard_id
		from	ecx_standards
		where	standard_code = m_message_standard
                and     standard_type = nvl(m_message_type, 'XML');
Line: 2259

select  ecx_output_runs_s.NEXTVAL
from    dual;
Line: 2341

		select	map_id
		into	i_map_id
		from	ecx_mappings
		where	map_code = i_map_code;
Line: 2354

                select  standard_id
                into    ecx_utils.g_standard_id
                from    ecx_standards
                where   standard_code = i_message_standard
                and     standard_type = nvl(i_message_type, 'XML');
Line: 2482

select ecx_trigger_id_s.NEXTVAL
  from dual;
Line: 2509

	   select process_id into i_process_id from ecx_inbound_logs where msgid=i_msgid;
Line: 2520

            select process_id into i_process_id from ecx_inbound_logs where msgid=i_msgid; -- fix for bug 7609421 / 8629681
Line: 2557

    select decode(i_msgid,null,'Y','N') into l_msg_id_null from dual;
Line: 2578

      select process_id into l_process_id from ecx_inbound_logs where msgid=i_msgid;