DBA Data[Home] [Help]

APPS.WF_ACTIVITIES_PKG dependencies on WF_ACTIVITIES_PKG

Line 1: package body WF_ACTIVITIES_PKG as

1: package body WF_ACTIVITIES_PKG as
2: /* $Header: wfactb.pls 120.3 2006/08/24 06:59:16 hgandiko ship $ */
3: procedure INSERT_ROW (
4: X_ROWID in out nocopy VARCHAR2,
5: X_ITEM_TYPE in VARCHAR2,

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 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:

Line 532: end WF_ACTIVITIES_PKG;

528: (select /*+ hash_aj index_ffs(T,WF_ACTIVITIES_TL_PK) */
529: T.ITEM_TYPE , T.NAME , T.VERSION ,T.LANGUAGE from WF_ACTIVITIES_TL T );
530: end ADD_LANGUAGE;
531:
532: end WF_ACTIVITIES_PKG;