DBA Data[Home] [Help]

APPS.ENG_CHANGE_LINES_PKG dependencies on APP_EXCEPTION

Line 197: app_exception.raise_exception;

193: fetch c into recinfo;
194: if (c%notfound) then
195: close c;
196: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
197: app_exception.raise_exception;
198: end if;
199: close c;
200: if ( ((recinfo.REQUEST_ID = X_REQUEST_ID)
201: OR ((recinfo.REQUEST_ID is null) AND (X_REQUEST_ID is null)))

Line 237: app_exception.raise_exception;

233: ) then
234: null;
235: else
236: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
237: app_exception.raise_exception;
238: end if;
239:
240: for tlinfo in c1 loop
241: if (tlinfo.BASELANG = 'Y') then

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: end if;
252: end loop;
253: return;