DBA Data[Home] [Help]

APPS.JTS_CONFIG_VERSIONS_PKG dependencies on APP_EXCEPTION

Line 243: app_exception.raise_exception;

239: fetch c into recinfo;
240: if (c%notfound) then
241: close c;
242: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
243: app_exception.raise_exception;
244: end if;
245: close c;
246: if ( ((recinfo.VERSION_STATUS_CODE = X_VERSION_STATUS_CODE)
247: OR ((recinfo.VERSION_STATUS_CODE is null) AND (X_VERSION_STATUS_CODE is null)))

Line 298: app_exception.raise_exception;

294: ) then
295: null;
296: else
297: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
298: app_exception.raise_exception;
299: end if;
300:
301: for tlinfo in c1 loop
302: if (tlinfo.BASELANG = 'Y') then

Line 309: app_exception.raise_exception;

305: ) then
306: null;
307: else
308: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
309: app_exception.raise_exception;
310: end if;
311: end if;
312: end loop;
313: return;

Line 413: APP_EXCEPTION.RAISE_EXCEPTION;

409: WHERE version_id = p_version_id;
410:
411: EXCEPTION
412: WHEN OTHERS THEN
413: APP_EXCEPTION.RAISE_EXCEPTION;
414: END DELETE_ROW;
415:
416: procedure ADD_LANGUAGE
417: is

Line 502: APP_EXCEPTION.RAISE_EXCEPTION;

498: and userenv('LANG') in (language, source_lang);
499:
500: EXCEPTION
501: WHEN OTHERS THEN
502: APP_EXCEPTION.RAISE_EXCEPTION;
503: END TRANSLATE_ROW;
504:
505:
506: END JTS_CONFIG_VERSIONS_PKG;