DBA Data[Home] [Help]

APPS.ECX_TRANSACTIONS_PKG dependencies on APP_EXCEPTION

Line 259: app_exception.raise_exception;

255: fetch c into recinfo;
256: if (c%notfound) then
257: close c;
258: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
259: app_exception.raise_exception;
260: end if;
261: close c;
262: if ( (recinfo.TRANSACTION_TYPE = X_TRANSACTION_TYPE)
263: AND (recinfo.TRANSACTION_SUBTYPE = X_TRANSACTION_SUBTYPE)

Line 269: app_exception.raise_exception;

265: ) then
266: null;
267: else
268: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
269: app_exception.raise_exception;
270: end if;
271:
272: for tlinfo in c1 loop
273: if (tlinfo.BASELANG = 'Y') then

Line 280: app_exception.raise_exception;

276: ) then
277: null;
278: else
279: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
280: app_exception.raise_exception;
281: end if;
282: end if;
283: end loop;
284: return;