DBA Data[Home] [Help]

APPS.HR_ORG_INFORMATION_TYPES_PKG dependencies on APP_EXCEPTION

Line 170: app_exception.raise_exception;

166: fetch CSR_ORG_INFORMATION_TYPE into RECINFO;
167: if (CSR_ORG_INFORMATION_TYPE%notfound) then
168: close CSR_ORG_INFORMATION_TYPE;
169: fnd_message.set_name('FND','FORM_RECORD_DELETED');
170: app_exception.raise_exception;
171: end if;
172: close CSR_ORG_INFORMATION_TYPE;
173: if ( ( (RECINFO.DESTINATION = X_DESTINATION)
174: or (RECINFO.DESTINATION is null and X_DESTINATION is null))

Line 187: app_exception.raise_exception;

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

Line 198: app_exception.raise_exception;

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