DBA Data[Home] [Help]

APPS.XLA_AMB_SETUP_ERR_PKG dependencies on XLA_AMB_SETUP_ERR_PKG

Line 1: PACKAGE BODY xla_amb_setup_err_pkg AS

1: PACKAGE BODY xla_amb_setup_err_pkg AS
2: -- $Header: xlaamerr.pkb 120.8 2005/06/28 20:10:30 dcshah ship $
3: /*===========================================================================+
4: | Copyright (c) 2001-2002 Oracle Corporation |
5: | Redwood Shores, CA, USA |

Line 9: | xla_amb_setup_err_pkg |

5: | Redwood Shores, CA, USA |
6: | All rights reserved. |
7: +============================================================================+
8: | PACKAGE NAME |
9: | xla_amb_setup_err_pkg |
10: | |
11: | DESCRIPTION |
12: | This is the body of the package that handles errors for accounting |
13: | methods builder setup generated by the Extract Integrity Checker and |

Line 29: g_amb_errors xla_amb_setup_err_pkg.t_array_error;

25: -- declaring private package variables
26: -------------------------------------------------------------------------------
27: g_error_index PLS_INTEGER := 0;
28: g_error_count PLS_INTEGER := 0;
29: g_amb_errors xla_amb_setup_err_pkg.t_array_error;
30: g_request_id NUMBER;
31: -------------------------------------------------------------------------------
32: -- forward declarion of private procedures and functions
33: -------------------------------------------------------------------------------

Line 46: C_DEFAULT_MODULE CONSTANT VARCHAR2(240) := 'xla.plsql.xla_amb_setup_err_pkg';

42: C_LEVEL_EXCEPTION CONSTANT NUMBER := FND_LOG.LEVEL_EXCEPTION;
43: C_LEVEL_ERROR CONSTANT NUMBER := FND_LOG.LEVEL_ERROR;
44: C_LEVEL_UNEXPECTED CONSTANT NUMBER := FND_LOG.LEVEL_UNEXPECTED;
45:
46: C_DEFAULT_MODULE CONSTANT VARCHAR2(240) := 'xla.plsql.xla_amb_setup_err_pkg';
47:
48: g_trace_label VARCHAR2(240);
49: g_log_level NUMBER;
50: g_log_enabled BOOLEAN;

Line 74: (p_location => 'xla_amb_setup_err_pkg.trace');

70: WHEN xla_exceptions_pkg.application_exception THEN
71: RAISE;
72: WHEN OTHERS THEN
73: xla_exceptions_pkg.raise_message
74: (p_location => 'xla_amb_setup_err_pkg.trace');
75: END trace;
76:
77: --=============================================================================
78: -- *********** public procedures and functions **********

Line 136: (p_location => 'xla_amb_setup_err_pkg.initialize');

132: WHEN xla_exceptions_pkg.application_exception THEN
133: RAISE;
134: WHEN OTHERS THEN
135: xla_exceptions_pkg.raise_message
136: (p_location => 'xla_amb_setup_err_pkg.initialize');
137: END initialize;
138:
139: /*======================================================================+
140: | |

Line 278: (p_location => 'xla_amb_setup_err_pkg.stack_error');

274: WHEN xla_exceptions_pkg.application_exception THEN
275: RAISE;
276: WHEN OTHERS THEN
277: xla_exceptions_pkg.raise_message
278: (p_location => 'xla_amb_setup_err_pkg.stack_error');
279: END stack_error;
280:
281: /*======================================================================+
282: | |

Line 413: (p_location => 'xla_amb_setup_err_pkg.insert_errors');

409: WHEN xla_exceptions_pkg.application_exception THEN
410: RAISE;
411: WHEN OTHERS THEN
412: xla_exceptions_pkg.raise_message
413: (p_location => 'xla_amb_setup_err_pkg.insert_errors');
414: END insert_errors;
415:
416:
417: --=============================================================================

Line 463: (p_location => 'xla_amb_setup_err_pkg.reset');

459: WHEN xla_exceptions_pkg.application_exception THEN
460: RAISE;
461: WHEN OTHERS THEN
462: xla_exceptions_pkg.raise_message
463: (p_location => 'xla_amb_setup_err_pkg.reset');
464: END reset;
465:
466: -- This is run only the first time when the package is called.
467: BEGIN

Line 474: END xla_amb_setup_err_pkg;

470: g_log_enabled := fnd_log.test
471: (log_level => g_log_level
472: ,module => C_DEFAULT_MODULE);
473:
474: END xla_amb_setup_err_pkg;