DBA Data[Home] [Help]

APPS.FND_DESCRIPTIVE_FLEXS_PKG dependencies on APP_EXCEPTION

Line 206: app_exception.raise_exception;

202: fetch c into recinfo;
203: if (c%notfound) then
204: close c;
205: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
206: app_exception.raise_exception;
207: end if;
208: close c;
209: if ( ((recinfo.CONCATENATED_SEGS_VIEW_NAME = X_CONCATENATED_SEGS_VIEW_NAME)
210: OR ((recinfo.CONCATENATED_SEGS_VIEW_NAME is null) AND (X_CONCATENATED_SEGS_VIEW_NAME 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 250: app_exception.raise_exception;

246: ) then
247: null;
248: else
249: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
250: app_exception.raise_exception;
251: end if;
252: end if;
253: end loop;
254: return;