DBA Data[Home] [Help]

APPS.HR_ORG_INFORMATION_TYPES_PKG dependencies on APP_EXCEPTION

Line 151: app_exception.raise_exception;

147: fetch CSR_ORG_INFORMATION_TYPE into RECINFO;
148: if (CSR_ORG_INFORMATION_TYPE%notfound) then
149: close CSR_ORG_INFORMATION_TYPE;
150: fnd_message.set_name('FND','FORM_RECORD_DELETED');
151: app_exception.raise_exception;
152: end if;
153: close CSR_ORG_INFORMATION_TYPE;
154: if ( ( (RECINFO.DESTINATION = X_DESTINATION)
155: or (RECINFO.DESTINATION is null and X_DESTINATION is null))

Line 168: app_exception.raise_exception;

164: ) then
165: null;
166: else
167: fnd_message.set_name('FND','FORM_RECORD_CHANGED');
168: app_exception.raise_exception;
169: end if;
170:
171: for tlinfo in CSR_ORG_INFORMATION_TYPE_TL loop
172: if (tlinfo.BASELANG = 'Y') then

Line 179: app_exception.raise_exception;

175: ) then
176: null;
177: else
178: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
179: app_exception.raise_exception;
180: end if;
181: end if;
182: end loop;
183: return;