DBA Data[Home] [Help]

APPS.XLA_REPORT_UTILITY_PKG dependencies on XLA_REPORT_UTILITY_PKG

Line 1: PACKAGE BODY xla_report_utility_pkg AS

1: PACKAGE BODY xla_report_utility_pkg AS
2: -- $Header: xlarputl.pkb 120.11 2006/07/18 06:29:01 vinaykum noship $
3: /*===========================================================================+
4: | Copyright (c) 2003 Oracle Corporation BelmFont, California, USA |
5: | ALL rights reserved. |

Line 11: | xla_report_utility_pkg |

7: | FILENAME |
8: | xlarputl.pkb |
9: | |
10: | PACKAGE NAME |
11: | xla_report_utility_pkg |
12: | |
13: | DESCRIPTION |
14: | Package body. This provides routines that support reports |
15: | |

Line 50: C_DEFAULT_MODULE CONSTANT VARCHAR2(240) := 'xla.plsql.xla_report_utility_pkg';

46: C_LEVEL_ERROR CONSTANT NUMBER := FND_LOG.LEVEL_ERROR;
47: C_LEVEL_UNEXPECTED CONSTANT NUMBER := FND_LOG.LEVEL_UNEXPECTED;
48:
49: C_LEVEL_LOG_DISABLED CONSTANT NUMBER := 99;
50: C_DEFAULT_MODULE CONSTANT VARCHAR2(240) := 'xla.plsql.xla_report_utility_pkg';
51:
52: g_log_level NUMBER;
53: g_log_enabled BOOLEAN;
54:

Line 71: (p_location => 'xla_report_utility_pkg.trace');

67: WHEN xla_exceptions_pkg.application_exception THEN
68: RAISE;
69: WHEN OTHERS THEN
70: xla_exceptions_pkg.raise_message
71: (p_location => 'xla_report_utility_pkg.trace');
72: END trace;
73:
74: --=============================================================================
75: -- *********** public procedures and functions **********

Line 370: (p_location => 'xla_report_utility_pkg.get_transaction_id ');

366:
367: EXCEPTION
368: WHEN OTHERS THEN
369: xla_exceptions_pkg.raise_message
370: (p_location => 'xla_report_utility_pkg.get_transaction_id ');
371: END get_transaction_id;
372:
373: --=============================================================================
374: --

Line 515: (p_location => 'xla_report_utility_pkg.get_acct_qualifier_segs');

511: END IF;
512: EXCEPTION
513: WHEN OTHERS THEN
514: xla_exceptions_pkg.raise_message
515: (p_location => 'xla_report_utility_pkg.get_acct_qualifier_segs');
516: END get_acct_qualifier_segs;
517:
518:
519: --=============================================================================

Line 583: (p_location => 'xla_report_utility_pkg.get_ccid_desc');

579: END IF;
580: EXCEPTION
581: WHEN OTHERS THEN
582: xla_exceptions_pkg.raise_message
583: (p_location => 'xla_report_utility_pkg.get_ccid_desc');
584: END get_ccid_desc;
585:
586:
587: --=============================================================================

Line 642: (p_location => 'xla_report_utility_pkg.clob_to_file');

638:
639: EXCEPTION
640: WHEN OTHERS THEN
641: xla_exceptions_pkg.raise_message
642: (p_location => 'xla_report_utility_pkg.clob_to_file');
643: END clob_to_file;
644:
645:
646: --=============================================================================

Line 728: (p_location => 'xla_report_utility_pkg.get_anc_filter');

724:
725: EXCEPTION
726: WHEN OTHERS THEN
727: xla_exceptions_pkg.raise_message
728: (p_location => 'xla_report_utility_pkg.get_anc_filter');
729: END get_anc_filter;
730:
731:
732: --=============================================================================

Line 758: (p_location => 'xla_report_utility_pkg.unravel_ledger (fn)');

754: WHEN NO_DATA_FOUND THEN
755: RETURN NULL;
756: WHEN OTHERS THEN
757: xla_exceptions_pkg.raise_message
758: (p_location => 'xla_report_utility_pkg.unravel_ledger (fn)');
759: END is_primary_ledger;
760:
761:
762: --=============================================================================

Line 776: l_object_type_code := xla_report_utility_pkg.

772: l_ledger_id_out gl_ledgers.ledger_id%TYPE;
773:
774: BEGIN
775:
776: l_object_type_code := xla_report_utility_pkg.
777: get_ledger_object_type(p_ledger_id);
778:
779: IF l_object_type_code = 'L' THEN
780:

Line 809: (p_location => 'xla_report_utility_pkg.unravel_ledger (fn)');

805:
806: EXCEPTION
807: WHEN OTHERS THEN
808: xla_exceptions_pkg.raise_message
809: (p_location => 'xla_report_utility_pkg.unravel_ledger (fn)');
810: END get_ledger_id;
811:
812: --=============================================================================
813: --

Line 834: (p_location => 'xla_report_utility_pkg.unravel_ledger (fn)');

830:
831: EXCEPTION
832: WHEN OTHERS THEN
833: xla_exceptions_pkg.raise_message
834: (p_location => 'xla_report_utility_pkg.unravel_ledger (fn)');
835: END get_ledger_object_type;
836:
837:
838: --=============================================================================

Line 1047: (p_location => 'xla_report_utility_pkg.get_transaction_id ');

1043:
1044: EXCEPTION
1045: WHEN OTHERS THEN
1046: xla_exceptions_pkg.raise_message
1047: (p_location => 'xla_report_utility_pkg.get_transaction_id ');
1048:
1049: END get_transaction_id;
1050:
1051: --=============================================================================

Line 1134: (p_location => 'xla_report_utility_pkg.get_conc_segments ');

1130:
1131: EXCEPTION
1132: WHEN OTHERS THEN
1133: xla_exceptions_pkg.raise_message
1134: (p_location => 'xla_report_utility_pkg.get_conc_segments ');
1135:
1136: END get_conc_segments;
1137:
1138:

Line 1180: END XLA_REPORT_UTILITY_PKG;

1176: IF NOT g_log_enabled THEN
1177: g_log_level := C_LEVEL_LOG_DISABLED;
1178: END IF;
1179:
1180: END XLA_REPORT_UTILITY_PKG;