DBA Data[Home] [Help]

APPS.FA_STANDARD_PKG dependencies on APP_EXCEPTION

Line 18: app_exception.raise_exception;

14: L_err_num number default 0;
15: begin
16: L_err_num := SQLCODE;
17: if L_err_num = -20001 then
18: app_exception.raise_exception;
19: elsif L_err_num = -20000 then
20: raise_application_error(-20000, SQLERRM);
21: end if;
22:

Line 30: app_exception.raise_exception;

26: fnd_message.set_token('CALLED_FN', called_fn);
27: fnd_message.set_token('CALLING_FN', calling_fn);
28: fnd_message.set_token('SQLERRM', SUBSTR(SQLERRM, 1, 100));
29: end if;
30: app_exception.raise_exception;
31: return;
32: end if;
33:
34: fnd_message.set_name('OFA', name);

Line 48: app_exception.raise_exception;

44: end if;
45: if (token3 is not null) then
46: fnd_message.set_token(token3, value3, translate);
47: end if;
48: app_exception.raise_exception;
49: end raise_error;
50:
51: END FA_STANDARD_PKG;