DBA Data[Home] [Help]

APPS.CS_CF_FLOW_PAGES_PKG dependencies on APP_EXCEPTION

Line 194: app_exception.raise_exception;

190: fetch c into recinfo;
191: if (c%notfound) then
192: close c;
193: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
194: app_exception.raise_exception;
195: end if;
196: close c;
197: if ( ((recinfo.ENABLED_FLAG = X_ENABLED_FLAG)
198: OR ((recinfo.ENABLED_FLAG is null) AND (X_ENABLED_FLAG 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 248: app_exception.raise_exception;

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