DBA Data[Home] [Help]

APPS.QP_CURRENCY_LISTS_PKG dependencies on APP_EXCEPTION

Line 191: app_exception.raise_exception;

187: fetch c into recinfo;
188: if (c%notfound) then
189: close c;
190: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
191: app_exception.raise_exception;
192: end if;
193: close c;
194: if ( (recinfo.BASE_CURRENCY_CODE = X_BASE_CURRENCY_CODE)
195: AND ((recinfo.REQUEST_ID = X_REQUEST_ID)

Line 233: app_exception.raise_exception;

229: ) then
230: null;
231: else
232: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
233: app_exception.raise_exception;
234: end if;
235:
236: for tlinfo in c1 loop
237: if (tlinfo.BASELANG = 'Y') then

Line 245: app_exception.raise_exception;

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