DBA Data[Home] [Help]

APPS.XLA_CMP_STRING_PKG dependencies on XLA_CMP_STRING_PKG

Line 1: PACKAGE BODY xla_cmp_string_pkg AS

1: PACKAGE BODY xla_cmp_string_pkg AS
2: /* $Header: xlacpstr.pkb 120.15.12010000.2 2010/05/11 10:58:57 karamakr ship $ */
3: /*===========================================================================+
4: | Copyright (c) 2001-2002 Oracle Corporation |
5: | Redwood Shores, CA, USA |

Line 9: | xla_cmp_string_pkg |

5: | Redwood Shores, CA, USA |
6: | All rights reserved. |
7: +============================================================================+
8: | PACKAGE NAME |
9: | xla_cmp_string_pkg |
10: | |
11: | DESCRIPTION |
12: | This is a XLA private package, which contains all the logic required |
13: | to handle the text gcreated by the compiler |

Line 58: C_DEFAULT_MODULE CONSTANT VARCHAR2(240) := 'xla.plsql.xla_cmp_string_pkg';

54: C_LEVEL_ERROR CONSTANT NUMBER := FND_LOG.LEVEL_ERROR;
55: C_LEVEL_UNEXPECTED CONSTANT NUMBER := FND_LOG.LEVEL_UNEXPECTED;
56:
57: C_LEVEL_LOG_DISABLED CONSTANT NUMBER := 99;
58: C_DEFAULT_MODULE CONSTANT VARCHAR2(240) := 'xla.plsql.xla_cmp_string_pkg';
59:
60: g_log_level NUMBER;
61: g_log_enabled BOOLEAN;
62:

Line 82: (p_location => 'xla_cmp_string_pkg.trace');

78: WHEN xla_exceptions_pkg.application_exception THEN
79: RAISE;
80: WHEN OTHERS THEN
81: xla_exceptions_pkg.raise_message
82: (p_location => 'xla_cmp_string_pkg.trace');
83: END trace;
84:
85: --+==========================================================================+
86: --| |

Line 173: (p_location => 'xla_cmp_string_pkg.ConcatTwoStrings');

169: WHEN xla_exceptions_pkg.application_exception THEN
170: RETURN g_null_varchar2s;
171: WHEN OTHERS THEN
172: xla_exceptions_pkg.raise_message
173: (p_location => 'xla_cmp_string_pkg.ConcatTwoStrings');
174: END ConcatTwoStrings;
175: --
176: --
177: --+==========================================================================+

Line 370: (p_location => 'xla_cmp_string_pkg.AddNewLine');

366: WHEN xla_exceptions_pkg.application_exception THEN
367: RAISE;
368: WHEN OTHERS THEN
369: xla_exceptions_pkg.raise_message
370: (p_location => 'xla_cmp_string_pkg.AddNewLine');
371: END AddNewLine;
372: --
373: --
374: --+==========================================================================+

Line 502: (p_location => 'xla_cmp_string_pkg.truncate_lines');

498: WHEN xla_exceptions_pkg.application_exception THEN
499: RAISE;
500: WHEN OTHERS THEN
501: xla_exceptions_pkg.raise_message
502: (p_location => 'xla_cmp_string_pkg.truncate_lines');
503: END truncate_lines;
504: --
505: --+==========================================================================+
506: --| |

Line 566: (p_location => 'xla_cmp_string_pkg.DumpLines');

562: WHEN xla_exceptions_pkg.application_exception THEN
563: RAISE;
564: WHEN OTHERS THEN
565: xla_exceptions_pkg.raise_message
566: (p_location => 'xla_cmp_string_pkg.DumpLines');
567: END DumpLines;
568: --
569: --+==========================================================================+
570: --| |

Line 636: (p_location => 'xla_cmp_string_pkg.replace_token');

632: WHEN xla_exceptions_pkg.application_exception THEN
633: RAISE;
634: WHEN OTHERS THEN
635: xla_exceptions_pkg.raise_message
636: (p_location => 'xla_cmp_string_pkg.replace_token');
637: END replace_token;
638:
639: --=============================================================================
640: --

Line 678: END xla_cmp_string_pkg;

674: IF NOT g_log_enabled THEN
675: g_log_level := C_LEVEL_LOG_DISABLED;
676: END IF;
677: --
678: END xla_cmp_string_pkg;