DBA Data[Home] [Help]

APPS.WF_ITEM_TYPES_PKG dependencies on WF_CORE

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 118: wf_core.raise('WF_RECORD_DELETED');

114: open c;
115: fetch c into recinfo;
116: if (c%notfound) then
117: close c;
118: wf_core.raise('WF_RECORD_DELETED');
119: end if;
120: close c;
121: if ( (recinfo.PROTECT_LEVEL = X_PROTECT_LEVEL)
122: AND (recinfo.CUSTOM_LEVEL = X_CUSTOM_LEVEL)

Line 134: wf_core.raise('WF_RECORD_CHANGED');

130: OR ((recinfo.EXECUTE_ROLE is null) AND (X_EXECUTE_ROLE is null)))
131: ) then
132: null;
133: else
134: wf_core.raise('WF_RECORD_CHANGED');
135: end if;
136:
137: open c1;
138: fetch c1 into tlinfo;

Line 151: wf_core.raise('WF_RECORD_CHANGED');

147: OR ((tlinfo.DESCRIPTION is null) AND (X_DESCRIPTION is null)))
148: ) then
149: null;
150: else
151: wf_core.raise('WF_RECORD_CHANGED');
152: end if;
153: return;
154: exception
155: when others then

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