DBA Data[Home] [Help]

APPS.HR_FORM_TAB_PAGES_PKG dependencies on APP_EXCEPTION

Line 144: app_exception.raise_exception;

140: fetch c into recinfo;
141: if (c%notfound) then
142: close c;
143: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
144: app_exception.raise_exception;
145: end if;
146: close c;
147: if ( ((recinfo.VISIBLE_OVERRIDE = X_VISIBLE_OVERRIDE)
148: OR ((recinfo.VISIBLE_OVERRIDE is null) AND (X_VISIBLE_OVERRIDE is null)))

Line 157: app_exception.raise_exception;

153: ) then
154: null;
155: else
156: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
157: app_exception.raise_exception;
158: end if;
159:
160: for tlinfo in c1 loop
161: if (tlinfo.BASELANG = 'Y') then

Line 169: app_exception.raise_exception;

165: ) then
166: null;
167: else
168: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
169: app_exception.raise_exception;
170: end if;
171: end if;
172: end loop;
173: return;