DBA Data[Home] [Help]

APPS.WF_ACTIVITIES_PKG dependencies on WF_CORE

Line 225: wf_core.context('Wf_Activities_Pkg', 'Insert_Row', x_item_type,

221: close c;
222:
223: exception
224: when others then
225: wf_core.context('Wf_Activities_Pkg', 'Insert_Row', x_item_type,
226: x_name, to_char(x_version));
227: raise;
228: end INSERT_ROW;
229:

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

289: open c;
290: fetch c into recinfo;
291: if (c%notfound) then
292: close c;
293: wf_core.raise('WF_RECORD_DELETED');
294: end if;
295: close c;
296: if ( (recinfo.TYPE = X_TYPE)
297: AND (recinfo.RERUN = X_RERUN)

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

321: OR ((recinfo.ERROR_PROCESS is null) AND (X_ERROR_PROCESS is null)))
322: ) then
323: null;
324: else
325: wf_core.raise('WF_RECORD_CHANGED');
326: end if;
327:
328: open c1;
329: fetch c1 into tlinfo;

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

338: OR ((tlinfo.DESCRIPTION is null) AND (X_DESCRIPTION is null)))
339: ) then
340: null;
341: else
342: wf_core.raise('WF_RECORD_CHANGED');
343: end if;
344: return;
345:
346: exception

Line 348: wf_core.context('Wf_Activities_Pkg', 'Lock_Row', x_item_type,

344: return;
345:
346: exception
347: when others then
348: wf_core.context('Wf_Activities_Pkg', 'Lock_Row', x_item_type,
349: x_name, to_char(x_version));
350: raise;
351: end LOCK_ROW;
352:

Line 417: wf_core.context('Wf_Activities_Pkg', 'Update_Row', x_item_type,

413: end if;
414:
415: exception
416: when others then
417: wf_core.context('Wf_Activities_Pkg', 'Update_Row', x_item_type,
418: x_name, to_char(x_version));
419: raise;
420: end UPDATE_ROW;
421:

Line 448: wf_core.context('Wf_Activities_Pkg', 'Delete_Row', x_item_type,

444: end if;
445:
446: exception
447: when others then
448: wf_core.context('Wf_Activities_Pkg', 'Delete_Row', x_item_type,
449: x_name, to_char(x_version));
450: raise;
451: end DELETE_ROW;
452: