DBA Data[Home] [Help]

APPS.AMV_C_CATEGORIES_PKG dependencies on APP_EXCEPTION

Line 231: app_exception.raise_exception;

227: fetch c into recinfo;
228: if (c%notfound) then
229: close c;
230: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
231: app_exception.raise_exception;
232: end if;
233: close c;
234: if ( ((recinfo.APPLICATION_ID = X_APPLICATION_ID)
235: OR ((recinfo.APPLICATION_ID is null) AND (X_APPLICATION_ID is null)))

Line 246: app_exception.raise_exception;

242: ) then
243: null;
244: else
245: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
246: app_exception.raise_exception;
247: end if;
248:
249: for tlinfo in c1 loop
250: if (tlinfo.BASELANG = 'Y') then

Line 258: app_exception.raise_exception;

254: ) then
255: null;
256: else
257: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
258: app_exception.raise_exception;
259: end if;
260: end if;
261: end loop;
262: return;