DBA Data[Home] [Help]

APPS.FA_STANDARD_PKG dependencies on APP_EXCEPTION

Line 19: app_exception.raise_exception;

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

Line 31: app_exception.raise_exception;

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

Line 49: app_exception.raise_exception;

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