DBA Data[Home] [Help]

APPS.IEB_SERVICE_LEVELS_PKG dependencies on APP_EXCEPTION

Line 161: app_exception.raise_exception;

157: fetch c into recinfo;
158: if (c%notfound) then
159: close c;
160: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
161: app_exception.raise_exception;
162: end if;
163: close c;
164: if ( (recinfo.DIRECTION = X_DIRECTION)
165: AND ((recinfo.MANDATORY_FLAG = X_MANDATORY_FLAG)

Line 189: app_exception.raise_exception;

185: ) then
186: null;
187: else
188: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
189: app_exception.raise_exception;
190: end if;
191:
192: for tlinfo in c1 loop
193: if (tlinfo.BASELANG = 'Y') then

Line 201: app_exception.raise_exception;

197: ) then
198: null;
199: else
200: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
201: app_exception.raise_exception;
202: end if;
203: end if;
204: end loop;
205: return;