DBA Data[Home] [Help]

APPS.WF_RESOURCES_PKG dependencies on WF_RESOURCES_PKG

Line 1: package body WF_RESOURCES_PKG as

1: package body WF_RESOURCES_PKG as
2: /* $Header: wfresb.pls 120.1 2005/07/02 03:53:07 appldev ship $ */
3: procedure INSERT_ROW (
4: X_ROWID in out nocopy VARCHAR2,
5: X_TYPE in VARCHAR2,

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

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

Line 102: wf_core.context('Wf_Resources_Pkg', 'Lock_Row',

98: return;
99:
100: exception
101: when others then
102: wf_core.context('Wf_Resources_Pkg', 'Lock_Row',
103: x_name, x_type);
104: raise;
105: end LOCK_ROW;
106:

Line 132: wf_core.context('Wf_Resources_Pkg', 'Update_Row',

128: end if;
129:
130: exception
131: when others then
132: wf_core.context('Wf_Resources_Pkg', 'Update_Row',
133: x_name, x_type);
134: raise;
135: end UPDATE_ROW;
136:

Line 152: wf_core.context('Wf_Resources_Pkg', 'Delete_Row',

148: end if;
149:
150: exception
151: when others then
152: wf_core.context('Wf_Resources_Pkg', 'Delete_Row',
153: x_name, x_type);
154: raise;
155: end DELETE_ROW;
156:

Line 217: end WF_RESOURCES_PKG;

213: T.NAME ,T.TYPE , T.LANGUAGE
214: from WF_RESOURCES T);
215: end ADD_LANGUAGE;
216:
217: end WF_RESOURCES_PKG;