DBA Data[Home] [Help]

APPS.WF_ITEM_ATTRIBUTES_PKG dependencies on WF_CORE

Line 87: wf_core.context('Wf_Item_Attributes_Pkg', 'Insert_Row',

83: close c;
84:
85: exception
86: when others then
87: wf_core.context('Wf_Item_Attributes_Pkg', 'Insert_Row',
88: x_item_type, x_name);
89: raise;
90: end INSERT_ROW;
91:

Line 138: wf_core.raise('WF_RECORD_DELETED');

134: open c;
135: fetch c into recinfo;
136: if (c%notfound) then
137: close c;
138: wf_core.raise('WF_RECORD_DELETED');
139: end if;
140: close c;
141: if ( (recinfo.SEQUENCE = X_SEQUENCE)
142: AND (recinfo.TYPE = X_TYPE)

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

154: OR ((recinfo.DATE_DEFAULT is null) AND (X_DATE_DEFAULT is null)))
155: ) then
156: null;
157: else
158: wf_core.raise('WF_RECORD_CHANGED');
159: end if;
160:
161: open c1;
162: fetch c1 into tlinfo;

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

171: OR ((tlinfo.DESCRIPTION is null) AND (X_DESCRIPTION is null)))
172: ) then
173: null;
174: else
175: wf_core.raise('WF_RECORD_CHANGED');
176: end if;
177: return;
178:
179: exception

Line 181: wf_core.context('Wf_Item_Attributes_Pkg', 'Lock_Row',

177: return;
178:
179: exception
180: when others then
181: wf_core.context('Wf_Item_Attributes_Pkg', 'Lock_Row',
182: x_item_type, x_name);
183: raise;
184: end LOCK_ROW;
185:

Line 233: wf_core.context('Wf_Item_Attributes_Pkg', 'Update_Row',

229: end if;
230:
231: exception
232: when others then
233: wf_core.context('Wf_Item_Attributes_Pkg', 'Update_Row',
234: x_item_type, x_name);
235: raise;
236: end UPDATE_ROW;
237:

Line 261: wf_core.context('Wf_Item_Attributes_Pkg', 'Delete_Row',

257: end if;
258:
259: exception
260: when others then
261: wf_core.context('Wf_Item_Attributes_Pkg', 'Delete_Row',
262: x_item_type, x_name);
263: raise;
264: end DELETE_ROW;
265: