DBA Data[Home] [Help]

APPS.PER_CUSTOMIZED_RESTR_PKG dependencies on APP_EXCEPTION

Line 221: app_exception.raise_exception;

217: fetch c into recinfo;
218: if (c%notfound) then
219: close c;
220: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
221: app_exception.raise_exception;
222: end if;
223: close c;
224: if ( ((recinfo.BUSINESS_GROUP_ID = X_BUSINESS_GROUP_ID)
225: OR ((recinfo.BUSINESS_GROUP_ID is null) AND (X_BUSINESS_GROUP_ID is null)))

Line 240: app_exception.raise_exception;

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

Line 251: app_exception.raise_exception;

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