DBA Data[Home] [Help]

APPS.AMS_LIST_QUERIES_NEW_PKG dependencies on APP_EXCEPTION

Line 202: app_exception.raise_exception;

198: fetch c into recinfo;
199: if (c%notfound) then
200: close c;
201: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
202: app_exception.raise_exception;
203: end if;
204: close c;
205: if ( ((recinfo.QUERY_TEMPLATE_ID = X_QUERY_TEMPLATE_ID)
206: OR ((recinfo.QUERY_TEMPLATE_ID is null) AND (X_QUERY_TEMPLATE_ID is null)))

Line 249: app_exception.raise_exception;

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

Line 261: app_exception.raise_exception;

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