DBA Data[Home] [Help]

APPS.XLA_TRANSACTION_ID_PKG dependencies on XLA_TRANSACTION_ID_PKG

Line 1: PACKAGE BODY xla_transaction_id_pkg AS

1: PACKAGE BODY xla_transaction_id_pkg AS
2: -- $Header: xlacmtid.pkb 120.19 2006/11/01 00:38:35 weshen ship $
3: /*===========================================================================+
4: | Copyright (c) 2001-2002 Oracle Corporation |
5: | Redwood Shores, CA, USA |

Line 9: | xla_transaction_id_pkg |

5: | Redwood Shores, CA, USA |
6: | All rights reserved. |
7: +============================================================================+
8: | PACKAGE NAME |
9: | xla_transaction_id_pkg |
10: | |
11: | DESCRIPTION |
12: | This package provides routines to handle transaction identifiers. |
13: | |

Line 79: C_DEFAULT_MODULE CONSTANT VARCHAR2(240) := 'xla.plsql.xla_transaction_id_pkg';

75: C_LEVEL_ERROR CONSTANT NUMBER := FND_LOG.LEVEL_ERROR;
76: C_LEVEL_UNEXPECTED CONSTANT NUMBER := FND_LOG.LEVEL_UNEXPECTED;
77:
78: C_LEVEL_LOG_DISABLED CONSTANT NUMBER := 99;
79: C_DEFAULT_MODULE CONSTANT VARCHAR2(240) := 'xla.plsql.xla_transaction_id_pkg';
80:
81: g_log_level NUMBER;
82: g_log_enabled BOOLEAN;
83:

Line 100: (p_location => 'xla_transaction_id_pkg.trace');

96: WHEN xla_exceptions_pkg.application_exception THEN
97: RAISE;
98: WHEN OTHERS THEN
99: xla_exceptions_pkg.raise_message
100: (p_location => 'xla_transaction_id_pkg.trace');
101: END trace;
102:
103:
104: --=============================================================================

Line 861: (p_location => 'xla_transaction_id_pkg.get_transaction_identifiers');

857: return 0;
858: EXCEPTION
859: WHEN OTHERS THEN
860: xla_exceptions_pkg.raise_message
861: (p_location => 'xla_transaction_id_pkg.get_transaction_identifiers');
862: end get_transaction_identifiers;
863:
864:
865: --=============================================================================

Line 906: END xla_transaction_id_pkg;

902: IF NOT g_log_enabled THEN
903: g_log_level := C_LEVEL_LOG_DISABLED;
904: END IF;
905:
906: END xla_transaction_id_pkg;