DBA Data[Home] [Help]

APPS.CS_KB_CTXT_REPO_MAPS_PKG dependencies on APP_EXCEPTION

Line 217: app_exception.raise_exception;

213: fetch c into recinfo;
214: if (c%notfound) then
215: close c;
216: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
217: app_exception.raise_exception;
218: end if;
219: close c;
220: if ( (recinfo.REPOSITORY_ID = X_REPOSITORY_ID)
221: AND (recinfo.CONTEXT_ID = X_CONTEXT_ID)

Line 265: app_exception.raise_exception;

261: ) then
262: null;
263: else
264: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
265: app_exception.raise_exception;
266: end if;
267:
268: for tlinfo in c1 loop
269: if (tlinfo.BASELANG = 'Y') then

Line 275: app_exception.raise_exception;

271: ) then
272: null;
273: else
274: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
275: app_exception.raise_exception;
276: end if;
277: end if;
278: end loop;
279: return;