DBA Data[Home] [Help]

APPS.WF_ITEM_TYPES_PKG dependencies on WF_ITEM_TYPES_PKG

Line 1: package body WF_ITEM_TYPES_PKG as

1: package body WF_ITEM_TYPES_PKG as
2: /* $Header: wfittb.pls 120.3 2005/10/04 05:13:04 rtodi ship $ */
3: procedure INSERT_ROW (
4: X_ROWID in out nocopy VARCHAR2,
5: X_NAME in VARCHAR2,

Line 77: wf_core.context('Wf_Item_Types_Pkg', 'Insert_Row', x_name);

73: close c;
74:
75: exception
76: when others then
77: wf_core.context('Wf_Item_Types_Pkg', 'Insert_Row', x_name);
78: raise;
79: end INSERT_ROW;
80:
81: procedure LOCK_ROW (

Line 156: wf_core.context('Wf_Item_Types_Pkg', 'Lock_Row', x_name);

152: end if;
153: return;
154: exception
155: when others then
156: wf_core.context('Wf_Item_Types_Pkg', 'Lock_Row', x_name);
157: raise;
158: end LOCK_ROW;
159:
160: procedure UPDATE_ROW (

Line 201: wf_core.context('Wf_Item_Types_Pkg', 'Update_Row', x_name);

197: raise no_data_found;
198: end if;
199: exception
200: when others then
201: wf_core.context('Wf_Item_Types_Pkg', 'Update_Row', x_name);
202: raise;
203: end UPDATE_ROW;
204:
205: procedure DELETE_ROW (

Line 225: wf_core.context('Wf_Item_Types_Pkg', 'Delete_Row', x_name);

221: end if;
222:
223: exception
224: when others then
225: wf_core.context('Wf_Item_Types_Pkg', 'Delete_Row', x_name);
226: raise;
227: end DELETE_ROW;
228:
229: procedure ADD_LANGUAGE

Line 296: end WF_ITEM_TYPES_PKG;

292: from WF_ITEM_TYPES_TL T) ;
293:
294: end ADD_LANGUAGE;
295:
296: end WF_ITEM_TYPES_PKG;