DBA Data[Home] [Help]

APPS.JTS_CONFIGURATIONS_PKG dependencies on APP_EXCEPTION

Line 31: APP_EXCEPTION.RAISE_EXCEPTION;

27: WHERE configuration_id = p_config_id;
28:
29: EXCEPTION
30: WHEN OTHERS THEN
31: APP_EXCEPTION.RAISE_EXCEPTION;
32: END DELETE_ROW;
33:
34: procedure INSERT_ROW (
35: X_ROWID in out VARCHAR2,

Line 232: app_exception.raise_exception;

228: fetch c into recinfo;
229: if (c%notfound) then
230: close c;
231: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
232: app_exception.raise_exception;
233: end if;
234: close c;
235: if ( (recinfo.CONFIG_NAME = X_CONFIG_NAME)
236: AND (recinfo.FLOW_ID = X_FLOW_ID)

Line 277: app_exception.raise_exception;

273: ) then
274: null;
275: else
276: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
277: app_exception.raise_exception;
278: end if;
279:
280: for tlinfo in c1 loop
281: if (tlinfo.BASELANG = 'Y') then

Line 288: app_exception.raise_exception;

284: ) then
285: null;
286: else
287: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
288: app_exception.raise_exception;
289: end if;
290: end if;
291: end loop;
292: return;

Line 453: APP_EXCEPTION.RAISE_EXCEPTION;

449: and userenv('LANG') in (language, source_lang);
450:
451: EXCEPTION
452: WHEN OTHERS THEN
453: APP_EXCEPTION.RAISE_EXCEPTION;
454: END TRANSLATE_ROW;
455:
456: END JTS_CONFIGURATIONS_PKG;