DBA Data[Home] [Help]

APPS.ZX_REPORTING_TYPES_PKG dependencies on APP_EXCEPTION

Line 172: app_exception.raise_exception;

168: fetch c into recinfo;
169: if (c%notfound) then
170: close c;
171: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
172: app_exception.raise_exception;
173: end if;
174: close c;
175: if ( ((recinfo.REQUEST_ID = X_REQUEST_ID)
176: OR ((recinfo.REQUEST_ID is null) AND (X_REQUEST_ID is null)))

Line 204: app_exception.raise_exception;

200: ) then
201: null;
202: else
203: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
204: app_exception.raise_exception;
205: end if;
206:
207: for tlinfo in c1 loop
208: if (tlinfo.BASELANG = 'Y') then

Line 215: app_exception.raise_exception;

211: ) then
212: null;
213: else
214: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
215: app_exception.raise_exception;
216: end if;
217: end if;
218: end loop;
219: return;