Query to check Business Event and its Subscription details from Backend
Kindly enter Business event name in below query to get details for business event and its subscriptions.
=====================================================
select we.name
,we.status event_status
,wes.status subscription_status
,nvl(wes.phase,0) subscription_phase
,wes.licensed_flag subscription_licensed_flag
,we.licensed_flag event_licensed_flag
,wes.rule_function
from wf_events we
,wf_event_subscriptions wes
where
we.name like 'xxcust.oracle.apps.cust.testBusinessEvent'
and wes.event_filter_guid = we.guid;
=====================================================
=====================================================
select we.name
,we.status event_status
,wes.status subscription_status
,nvl(wes.phase,0) subscription_phase
,wes.licensed_flag subscription_licensed_flag
,we.licensed_flag event_licensed_flag
,wes.rule_function
from wf_events we
,wf_event_subscriptions wes
where
we.name like 'xxcust.oracle.apps.cust.testBusinessEvent'
and wes.event_filter_guid = we.guid;
=====================================================
Comments
Post a Comment