DBA Data[Home] [Help]

APPS.WF_EVENT_GROUPS_PKG dependencies on WF_EVENTS

Line 159: from WF_EVENTS

155: X_ERROR out nocopy varchar2)is
156: event_count number;
157: begin
158: Select 1 into event_count
159: from WF_EVENTS
160: where guid=X_MEMBER_GUID;
161: exception
162: when no_data_found then
163: x_error:='NON_EXIST_EVENT:'||X_MEMBER_GUID;

Line 217: from wf_events

213: -- NO_DATA_FOUND error as it will be easy to understand the error for the user
214: begin
215: select guid
216: into l_group_guid
217: from wf_events
218: where name = l_value
219: and type = 'GROUP';
220: exception
221: when NO_DATA_FOUND then

Line 249: from wf_events

245: end;
246: elsif(l_node_name = 'MEMBER_NAME') then
247: select guid
248: into l_member_guid
249: from wf_events
250: where name = l_value;
251:
252: l_event_name := l_value;
253: elsif(l_node_name = wf_event_xml.versionTagName) then