DBA Data[Home] [Help]

APPS.WF_LOOKUPS_PKG dependencies on WF_LOOKUPS_PKG

Line 1: package body WF_LOOKUPS_PKG as

1: package body WF_LOOKUPS_PKG as
2: /* $Header: wflucb.pls 120.1 2005/07/02 03:49:32 appldev ship $ */
3: procedure INSERT_ROW (
4: X_ROWID in out nocopy VARCHAR2,
5: X_LOOKUP_TYPE in VARCHAR2,

Line 55: wf_core.context('Wf_Lookups_Pkg', 'Insert_Row',

51: close c;
52:
53: exception
54: when others then
55: wf_core.context('Wf_Lookups_Pkg', 'Insert_Row',
56: x_lookup_type, x_lookup_code);
57: raise;
58: end INSERT_ROW;
59:

Line 103: wf_core.context('Wf_Lookups_Pkg', 'Lock_Row',

99: return;
100:
101: exception
102: when others then
103: wf_core.context('Wf_Lookups_Pkg', 'Lock_Row',
104: x_lookup_type, x_lookup_code);
105: raise;
106: end LOCK_ROW;
107:

Line 133: wf_core.context('Wf_Lookups_Pkg', 'Update_Row',

129: end if;
130:
131: exception
132: when others then
133: wf_core.context('Wf_Lookups_Pkg', 'Update_Row',
134: x_lookup_type, x_lookup_code);
135: raise;
136: end UPDATE_ROW;
137:

Line 153: wf_core.context('Wf_Lookups_Pkg', 'Delete_Row',

149: end if;
150:
151: exception
152: when others then
153: wf_core.context('Wf_Lookups_Pkg', 'Delete_Row',
154: x_lookup_type, x_lookup_code);
155: raise;
156: end DELETE_ROW;
157:

Line 224: end WF_LOOKUPS_PKG;

220: from WF_LOOKUPS_TL T );
221:
222: end ADD_LANGUAGE;
223:
224: end WF_LOOKUPS_PKG;