DBA Data[Home] [Help]

APPS.WF_AGENT_GROUPS_PKG dependencies on WF_CORE

Line 36: wf_core.context('Wf_Agent_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_Agent_Groups_Pkg', 'Insert_Row', x_group_guid, x_member_guid);
37: raise;
38:
39: end INSERT_ROW;
40: -----------------------------------------------------------------------------

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

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

Line 84: wf_core.context('Wf_Agent_Groups_Pkg', 'Load_Row', x_group_guid,

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

Line 107: wf_core.context('Wf_Agent_Groups_Pkg', 'Delete_Row', x_group_guid,

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

Line 148: wf_core.context('Wf_Agent_Groups_Pkg', 'Generate', x_group_guid,

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

Line 188: wf_core.context('Wf_Agent_Groups_Pkg', 'Generate1', x_group_guid,

184:
185: null;
186: exception
187: when others then
188: wf_core.context('Wf_Agent_Groups_Pkg', 'Generate1', x_group_guid,
189: x_member_guid);
190: raise;
191: end GENERATE1;
192: -----------------------------------------------------------------------------

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

241: where name=l_value;
242: elsif(l_node_name = wf_event_xml.versionTagName) then
243: l_version := l_value;
244: else
245: Wf_Core.Token('REASON', 'Invalid column name found:' ||
246: l_node_name || ' with value:'||l_value);
247: Wf_Core.Raise('WFSQL_INTERNAL');
248: end if;
249: end loop;

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

243: l_version := l_value;
244: else
245: Wf_Core.Token('REASON', 'Invalid column name found:' ||
246: l_node_name || ' with value:'||l_value);
247: Wf_Core.Raise('WFSQL_INTERNAL');
248: end if;
249: end loop;
250:
251: wf_agent_groups_pkg.load_row(

Line 258: wf_core.context('Wf_Agent_Groups_Pkg', 'Receive', x_message);

254: );
255:
256: exception
257: when others then
258: wf_core.context('Wf_Agent_Groups_Pkg', 'Receive', x_message);
259: raise;
260: end RECEIVE;
261: -----------------------------------------------------------------------------
262: