DBA Data[Home] [Help]

APPS.WF_MESSAGES_PKG dependencies on WF_MESSAGES_PKG

Line 1: package body WF_MESSAGES_PKG as

1: package body WF_MESSAGES_PKG as
2: /* $Header: wfmsgb.pls 120.1 2005/07/02 02:48:16 appldev ship $ */
3: procedure INSERT_ROW (
4: X_ROWID in out nocopy VARCHAR2,
5: X_TYPE in VARCHAR2,

Line 84: wf_core.context('Wf_Messages_Pkg', 'Insert_Row', x_type, x_name);

80: close c;
81:
82: exception
83: when others then
84: wf_core.context('Wf_Messages_Pkg', 'Insert_Row', x_type, x_name);
85: raise;
86: end INSERT_ROW;
87:
88: procedure LOCK_ROW (

Line 174: wf_core.context('Wf_Messages_Pkg', 'Lock_Row', x_type, x_name);

170: return;
171:
172: exception
173: when others then
174: wf_core.context('Wf_Messages_Pkg', 'Lock_Row', x_type, x_name);
175: raise;
176: end LOCK_ROW;
177:
178: procedure UPDATE_ROW (

Line 223: wf_core.context('Wf_Messages_Pkg', 'Update_Row', x_type, x_name);

219: end if;
220:
221: exception
222: when others then
223: wf_core.context('Wf_Messages_Pkg', 'Update_Row', x_type, x_name);
224: raise;
225: end UPDATE_ROW;
226:
227: procedure DELETE_ROW (

Line 250: wf_core.context('Wf_Messages_Pkg', 'Delete_Row', x_type, x_name);

246: end if;
247:
248: exception
249: when others then
250: wf_core.context('Wf_Messages_Pkg', 'Delete_Row', x_type, x_name);
251: raise;
252: end DELETE_ROW;
253:
254: procedure ADD_LANGUAGE

Line 347: end WF_MESSAGES_PKG;

343: from WF_MESSAGES_TL T);
344:
345: end ADD_LANGUAGE;
346:
347: end WF_MESSAGES_PKG;