DBA Data[Home] [Help]

APPS.XDO_DS_DEFINITIONS_PKG dependencies on APP_EXCEPTION

Line 210: app_exception.raise_exception;

206: fetch c into recinfo;
207: if (c%notfound) then
208: close c;
209: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
210: app_exception.raise_exception;
211: end if;
212: close c;
213: if ( (recinfo.DATA_SOURCE_STATUS = X_DATA_SOURCE_STATUS)
214: AND (recinfo.START_DATE = X_START_DATE)

Line 254: app_exception.raise_exception;

250: ) then
251: null;
252: else
253: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
254: app_exception.raise_exception;
255: end if;
256:
257: for tlinfo in c1 loop
258: if (tlinfo.BASELANG = 'Y') then

Line 266: app_exception.raise_exception;

262: ) then
263: null;
264: else
265: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
266: app_exception.raise_exception;
267: end if;
268: end if;
269: end loop;
270: return;