DBA Data[Home] [Help]

APPS.WF_ACTIVITY_ATTRIBUTES_PKG dependencies on WF_CORE

Line 169: wf_core.context('Wf_Activity_Attributes_Pkg', 'Insert_Row',

165: close c;
166:
167: exception
168: when others then
169: wf_core.context('Wf_Activity_Attributes_Pkg', 'Insert_Row',
170: x_activity_item_type, x_activity_name, to_char(x_activity_version),
171: x_name);
172: raise;
173: end INSERT_ROW;

Line 229: wf_core.raise('WF_RECORD_DELETED');

225: open c;
226: fetch c into recinfo;
227: if (c%notfound) then
228: close c;
229: wf_core.raise('WF_RECORD_DELETED');
230: end if;
231: close c;
232: if ( (recinfo.SEQUENCE = X_SEQUENCE)
233: AND (recinfo.TYPE = X_TYPE)

Line 250: wf_core.raise('WF_RECORD_CHANGED');

246: OR ((recinfo.DATE_DEFAULT is null) AND (X_DATE_DEFAULT is null)))
247: ) then
248: null;
249: else
250: wf_core.raise('WF_RECORD_CHANGED');
251: end if;
252:
253: open c1;
254: fetch c1 into tlinfo;

Line 267: wf_core.raise('WF_RECORD_CHANGED');

263: OR ((tlinfo.DESCRIPTION is null) AND (X_DESCRIPTION is null)))
264: ) then
265: null;
266: else
267: wf_core.raise('WF_RECORD_CHANGED');
268: end if;
269: return;
270:
271: exception

Line 273: wf_core.context('Wf_Activity_Attributes_Pkg', 'Lock_Row',

269: return;
270:
271: exception
272: when others then
273: wf_core.context('Wf_Activity_Attributes_Pkg', 'Lock_Row',
274: x_activity_item_type, x_activity_name, to_char(x_activity_version),
275: x_name);
276: raise;
277: end LOCK_ROW;

Line 334: wf_core.context('Wf_Activity_Attributes_Pkg', 'Update_Row',

330: end if;
331:
332: exception
333: when others then
334: wf_core.context('Wf_Activity_Attributes_Pkg', 'Update_Row',
335: x_activity_item_type, x_activity_name, to_char(x_activity_version),
336: x_name);
337: raise;
338: end UPDATE_ROW;

Line 369: wf_core.context('Wf_Activity_Attributes_Pkg', 'Delete_Row',

365: end if;
366:
367: exception
368: when others then
369: wf_core.context('Wf_Activity_Attributes_Pkg', 'Delete_Row',
370: x_activity_item_type, x_activity_name, to_char(x_activity_version),
371: x_name);
372: raise;
373: end DELETE_ROW;