AR Customer Upload TCA Event Subscriptions
Description
Lists all Workflow Business Event subscriptions that may fire during AR Customer Upload processing — including the direct HZ events raised by the HZ APIs, AND the cascaded events that those subscriptions themselves can raise. Used to identify which subscription could be resetting the FND session context (fnd_global.conc_request_id) during the upload.
EVENT SOURCES (the EVENT_SOURCE column ... more
EVENT SOURCES (the EVENT_SOURCE column ... more
select distinct we.name event_name, case when we.name like 'oracle.apps.ar.hz.%' then 'Direct (HZ API)' when we.name like 'oracle.apps.fnd.wf.ds.%' then 'Cascaded (WF Directory Sync)' when we.name like 'oracle.apps.icx.%' then 'Cascaded (ICX Session)' else 'Cascaded (Other)' end event_source, wes.phase, wes.rule_function, case when wes.out_agent_guid is not null or wes.to_agent_guid is not null then 'Deferred' else 'Synchronous' end execution_mode, wes.status sub_status, wes.rule_data, wes.priority, wes.source_type sub_source_type, (select max(wa.name) from wf_agents wa where wa.guid=wes.source_agent_guid) source_agent_name, (select max(wa.name) from wf_agents wa where wa.guid=wes.out_agent_guid) out_agent_name, (select max(wa.name) from wf_agents wa where wa.guid=wes.to_agent_guid) to_agent_name, wes.wf_process_type, wes.wf_process_name, wes.parameters sub_parameters, wes.owner_name sub_owner_name, wes.owner_tag sub_owner_tag, wes.description sub_description, wes.expression sub_expression, wes.security_group_id sub_security_group_id, wes.customization_level sub_customization_level, wes.licensed_flag sub_licensed_flag, wes.invocation_id, wes.map_code, wes.standard_type, wes.standard_code, wes.java_rule_func, wes.on_error_code, wes.action_code, we.type event_type, we.status event_status, we.generate_function event_generate_function, we.owner_name event_owner_name, we.owner_tag event_owner_tag, we.security_group_id event_security_group_id, we.customization_level event_customization_level, we.licensed_flag event_licensed_flag, we.java_generate_func event_java_generate_func, we.irep_annotation event_irep_annotation from wf_event_subscriptions wes, wf_events we where wes.event_filter_guid=we.guid and ( we.name in ( 'oracle.apps.ar.hz.Location.create', 'oracle.apps.ar.hz.Location.update', 'oracle.apps.ar.hz.PartySite.create', 'oracle.apps.ar.hz.PartySite.update', 'oracle.apps.ar.hz.PartySiteUse.create', 'oracle.apps.ar.hz.PartySiteUse.update', 'oracle.apps.ar.hz.CustAcctSite.create', 'oracle.apps.ar.hz.CustAcctSite.update', 'oracle.apps.ar.hz.CustAcctSiteUse.create', 'oracle.apps.ar.hz.CustAcctSiteUse.update', 'oracle.apps.ar.hz.CustAccount.create', 'oracle.apps.ar.hz.CustAccount.update', 'oracle.apps.ar.hz.Organization.create', 'oracle.apps.ar.hz.Organization.update', 'oracle.apps.ar.hz.Person.create', 'oracle.apps.ar.hz.Person.update', 'oracle.apps.ar.hz.PersonLanguage.create', 'oracle.apps.ar.hz.PersonLanguage.update', 'oracle.apps.ar.hz.Group.create', 'oracle.apps.ar.hz.Group.update', 'oracle.apps.ar.hz.OrgContact.create', 'oracle.apps.ar.hz.OrgContact.update', 'oracle.apps.ar.hz.OrgContactRole.create', 'oracle.apps.ar.hz.OrgContactRole.update', 'oracle.apps.ar.hz.Relationship.create', 'oracle.apps.ar.hz.Relationship.update', 'oracle.apps.ar.hz.ContactPoint.create', 'oracle.apps.ar.hz.ContactPoint.update', 'oracle.apps.ar.hz.CustomerProfile.create', 'oracle.apps.ar.hz.CustomerProfile.update', 'oracle.apps.ar.hz.CustomerProfileAmt.create', 'oracle.apps.ar.hz.CustomerProfileAmt.update', 'oracle.apps.ar.hz.CustomerAccountRole.create', 'oracle.apps.ar.hz.CustomerAccountRole.update', 'oracle.apps.ar.hz.CustAcctRelate.create', 'oracle.apps.ar.hz.CustAcctRelate.update', 'oracle.apps.ar.hz.PartyTaxProfile.create', 'oracle.apps.ar.hz.PartyTaxProfile.update', 'oracle.apps.ar.hz.DQM.realtimesync' ) or we.name like 'oracle.apps.fnd.wf.ds.user.%' or we.name like 'oracle.apps.fnd.wf.ds.userrole.%' or we.name like 'oracle.apps.fnd.wf.ds.role.%' or we.name like 'oracle.apps.icx.security.session.%' ) and 1=1 order by event_source, we.name, wes.phase |
| Parameter Name | SQL text | Validation | |
|---|---|---|---|
| Status |
| LOV |