DBA Data[Home] [Help]

APPS.ECX_XREF_STANDARDS_PKG dependencies on APP_EXCEPTION

Line 298: app_exception.raise_exception;

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

Line 314: app_exception.raise_exception;

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

Line 325: app_exception.raise_exception;

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