DBA Data[Home] [Help]

APPS.FND_OID_DIAG dependencies on WF_EVENTS

Line 523: from wf_events e, wf_event_subscriptions s

519:
520: CURSOR c1(sub VARCHAR2) is
521:
522: select s.status, e.name
523: from wf_events e, wf_event_subscriptions s
524: where rule_function = sub and
525: s.event_filter_guid = e.guid;
526:
527: begin

Line 1182: from wf_events

1178: l_status varchar2(10);
1179:
1180: begin
1181: select status into l_status
1182: from wf_events
1183: where name = eventName;
1184:
1185: return l_status;
1186: exception