DBA Data[Home] [Help]

APPS.GMD_STATUS_MLS dependencies on APP_EXCEPTION

Line 284: app_exception.raise_exception;

280: fetch c into recinfo;
281: if (c%notfound) then
282: close c;
283: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
284: app_exception.raise_exception;
285: end if;
286: close c;
287: if ( (recinfo.VERSION_ENABLED = X_VERSION_ENABLED)
288: AND (recinfo.UPDATEABLE = X_UPDATEABLE)

Line 359: app_exception.raise_exception;

355: ) then
356: null;
357: else
358: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
359: app_exception.raise_exception;
360: end if;
361:
362: for tlinfo in c1 loop
363: if (tlinfo.BASELANG = 'Y') then

Line 370: app_exception.raise_exception;

366: ) then
367: null;
368: else
369: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
370: app_exception.raise_exception;
371: end if;
372: end if;
373: end loop;
374: return;