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.22 2010/11/30 06:09:05 nksurana 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 86: C_DEFAULT_MODULE CONSTANT VARCHAR2(240) := 'xla.plsql.xla_transaction_id_pkg';

82: C_LEVEL_ERROR CONSTANT NUMBER := FND_LOG.LEVEL_ERROR;
83: C_LEVEL_UNEXPECTED CONSTANT NUMBER := FND_LOG.LEVEL_UNEXPECTED;
84:
85: C_LEVEL_LOG_DISABLED CONSTANT NUMBER := 99;
86: C_DEFAULT_MODULE CONSTANT VARCHAR2(240) := 'xla.plsql.xla_transaction_id_pkg';
87:
88: g_log_level NUMBER;
89: g_log_enabled BOOLEAN;
90:

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

103: WHEN xla_exceptions_pkg.application_exception THEN
104: RAISE;
105: WHEN OTHERS THEN
106: xla_exceptions_pkg.raise_message
107: (p_location => 'xla_transaction_id_pkg.trace');
108: END trace;
109:
110:
111: --=============================================================================

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

872: return 0;
873: EXCEPTION
874: WHEN OTHERS THEN
875: xla_exceptions_pkg.raise_message
876: (p_location => 'xla_transaction_id_pkg.get_transaction_identifiers');
877: end get_transaction_identifiers;
878:
879:
880: --=============================================================================

Line 921: END xla_transaction_id_pkg;

917: IF NOT g_log_enabled THEN
918: g_log_level := C_LEVEL_LOG_DISABLED;
919: END IF;
920:
921: END xla_transaction_id_pkg;