DBA Data[Home] [Help]

APPS.GL_COA_MIRROR_PKG dependencies on APP_EXCEPTION

Line 20: app_exception.raise_exception;

16: fnd_profile.get_specific(name_z => 'GL_ACCESS_SET_ID',
17: val_z => profile_val,
18: defined_z=> defined_flag);
19: if(profile_val IS NULL OR defined_flag = FALSE) then
20: app_exception.raise_exception;
21: end if;
22:
23: as_id := to_number(profile_val);
24:

Line 37: when app_exceptions.application_exception then

33:
34: RETURN gl_coa_mirror_pkg.chart_of_accounts_id;
35:
36: EXCEPTION
37: when app_exceptions.application_exception then
38: return -1;
39:
40: END get_coa_id;
41: