DBA Data[Home] [Help]

APPS.HR_FORM_TAB_PAGES_PKG dependencies on APP_EXCEPTION

Line 184: app_exception.raise_exception;

180: fetch c into recinfo;
181: if (c%notfound) then
182: close c;
183: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
184: app_exception.raise_exception;
185: end if;
186: close c;
187: if ( ((recinfo.VISIBLE_OVERRIDE = X_VISIBLE_OVERRIDE)
188: OR ((recinfo.VISIBLE_OVERRIDE is null) AND (X_VISIBLE_OVERRIDE is null)))

Line 197: app_exception.raise_exception;

193: ) then
194: null;
195: else
196: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
197: app_exception.raise_exception;
198: end if;
199:
200: for tlinfo in c1 loop
201: if (tlinfo.BASELANG = 'Y') then

Line 209: app_exception.raise_exception;

205: ) then
206: null;
207: else
208: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
209: app_exception.raise_exception;
210: end if;
211: end if;
212: end loop;
213: return;