DBA Data[Home] [Help]

APPS.ECX_XREF_HDR_PKG dependencies on APP_EXCEPTION

Line 232: app_exception.raise_exception;

228: fetch c into recinfo;
229: if (c%notfound) then
230: close c;
231: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
232: app_exception.raise_exception;
233: end if;
234: close c;
235: if ( (recinfo.XREF_CATEGORY_CODE = X_XREF_CATEGORY_CODE)
236: ) then

Line 240: app_exception.raise_exception;

236: ) then
237: null;
238: else
239: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
240: app_exception.raise_exception;
241: end if;
242:
243: for tlinfo in c1 loop
244: if (tlinfo.BASELANG = 'Y') then

Line 251: app_exception.raise_exception;

247: ) then
248: null;
249: else
250: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
251: app_exception.raise_exception;
252: end if;
253: end if;
254: end loop;
255: return;