DBA Data[Home] [Help]

APPS.WF_EVENT_GROUPS_PKG dependencies on WF_CORE

Line 36: wf_core.context('Wf_Event_Groups_Pkg', 'Insert_Row', x_group_guid, x_member_guid);

32: close c;
33:
34: exception
35: when others then
36: wf_core.context('Wf_Event_Groups_Pkg', 'Insert_Row', x_group_guid, x_member_guid);
37: raise;
38:
39: end INSERT_ROW;
40: -----------------------------------------------------------------------------

Line 60: wf_core.context('Wf_Event_Groups_Pkg', 'Update_Row', x_group_guid,

56: end if;
57:
58: exception
59: when others then
60: wf_core.context('Wf_Event_Groups_Pkg', 'Update_Row', x_group_guid,
61: x_member_guid);
62: raise;
63: end UPDATE_ROW;
64: -----------------------------------------------------------------------------

Line 78: wf_core.clear;

74: );
75:
76: exception
77: when no_data_found then
78: wf_core.clear;
79: WF_EVENT_GROUPS_PKG.INSERT_ROW(
80: X_ROWID => row_id,
81: X_GROUP_GUID => X_GROUP_GUID,
82: X_MEMBER_GUID => X_MEMBER_GUID

Line 85: wf_core.context('Wf_Event_Groups_Pkg', 'Load_Row', x_group_guid,

81: X_GROUP_GUID => X_GROUP_GUID,
82: X_MEMBER_GUID => X_MEMBER_GUID
83: );
84: when others then
85: wf_core.context('Wf_Event_Groups_Pkg', 'Load_Row', x_group_guid,
86: x_member_guid);
87: raise;
88: end LOAD_ROW;
89: -----------------------------------------------------------------------------

Line 108: wf_core.context('Wf_Event_Groups_Pkg', 'Delete_Row', x_group_guid,

104: end if;
105:
106: exception
107: when others then
108: wf_core.context('Wf_Event_Groups_Pkg', 'Delete_Row', x_group_guid,
109: x_member_guid);
110: raise;
111:
112: end DELETE_ROW;

Line 149: wf_core.context('Wf_Event_Groups_Pkg', 'Generate', x_group_guid,

145:
146: null;
147: exception
148: when others then
149: wf_core.context('Wf_Event_Groups_Pkg', 'Generate', x_group_guid,
150: x_member_guid);
151: raise;
152: end GENERATE;
153: -----------------------------------------------------------------------------

Line 165: wf_core.context('Wf_Event_Groups_Pkg', 'Check_Event', x_member_guid);

161: exception
162: when no_data_found then
163: x_error:='NON_EXIST_EVENT:'||X_MEMBER_GUID;
164: when others then
165: wf_core.context('Wf_Event_Groups_Pkg', 'Check_Event', x_member_guid);
166: raise;
167: end CHECK_EVENT;
168: -----------------------------------------------------------------------------
169: procedure RECEIVE2 (

Line 222: Wf_Core.Token('REASON', 'Invalid column name found:' ||

218: where name = l_value;
219: elsif(l_node_name = wf_event_xml.versionTagName) then
220: l_version := l_value;
221: else
222: Wf_Core.Token('REASON', 'Invalid column name found:' ||
223: l_node_name || ' with value:'||l_value);
224: Wf_Core.Raise('WFSQL_INTERNAL');
225: end if;
226: end loop;

Line 224: Wf_Core.Raise('WFSQL_INTERNAL');

220: l_version := l_value;
221: else
222: Wf_Core.Token('REASON', 'Invalid column name found:' ||
223: l_node_name || ' with value:'||l_value);
224: Wf_Core.Raise('WFSQL_INTERNAL');
225: end if;
226: end loop;
227:
228: wf_event_groups_pkg.check_event(l_member_guid,x_error);

Line 237: wf_core.context('Wf_Event_Groups_Pkg', 'Receive', x_message);

233: );
234:
235: exception
236: when others then
237: wf_core.context('Wf_Event_Groups_Pkg', 'Receive', x_message);
238: raise;
239: end RECEIVE2;
240:
241: -----------------------------------------------------------------------------

Line 277: wf_core.context('Wf_Event_Groups_Pkg', 'Generate2', x_group_name,

273:
274: null;
275: exception
276: when others then
277: wf_core.context('Wf_Event_Groups_Pkg', 'Generate2', x_group_name,
278: x_member_name);
279: raise;
280: end GENERATE2;
281: