DBA Data[Home] [Help]

APPS.ECX_XREF_DTL_PKG dependencies on APP_EXCEPTION

Line 302: app_exception.raise_exception;

298: fetch c into recinfo;
299: if (c%notfound) then
300: close c;
301: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
302: app_exception.raise_exception;
303: end if;
304: close c;
305: if ( (recinfo.XREF_CATEGORY_ID = X_XREF_CATEGORY_ID)
306: AND (recinfo.STANDARD_ID = X_STANDARD_ID)

Line 317: app_exception.raise_exception;

313: ) then
314: null;
315: else
316: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
317: app_exception.raise_exception;
318: end if;
319:
320: for tlinfo in c1 loop
321: if (tlinfo.BASELANG = 'Y') then

Line 328: app_exception.raise_exception;

324: ) then
325: null;
326: else
327: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
328: app_exception.raise_exception;
329: end if;
330: end if;
331: end loop;
332: return;