DBA Data[Home] [Help]

PACKAGE: APPS.XLA_TB_REPORT_PVT

Source


1 PACKAGE XLA_TB_REPORT_PVT AUTHID CURRENT_USER AS
2 /* $Header: xlatbrpt.pkh 120.2.12010000.3 2008/12/24 08:20:34 vvekrish ship $ */
3 /*======================================================================+
4 |             Copyright (c) 1995-2002 Oracle Corporation                |
5 |                       Redwood Shores, CA, USA                         |
6 |                         All rights reserved.                          |
7 +=======================================================================+
8 | PACKAGE NAME                                                          |
9 |    xla_tb_report_pvt                                                  |
10 |                                                                       |
11 | DESCRIPTION                                                           |
12 |    XLA Trial Balance Report Package                                   |
13 |                                                                       |
14 | HISTORY                                                               |
15 |    01-May-01 Dimple Shah    Created                                   |
16 |                                                                       |
17 +======================================================================*/
18 
19 --+=====================================================================+
20 --|                                                                     |
21 --|                                                                     |
22 --| Global Variables  referenced in XLATBRPT.xml                        |
23 --|                                                                     |
24 --|                                                                     |
25 --+=====================================================================+
26 
27 --======================================================================+
28 --                                                                      |
29 -- Report Lexical Parameters                                            |
30 --                                                                      |
31 --======================================================================+
32 P_SQL_STATEMENT             VARCHAR2(32000);
33 p_app_sql_statement         VARCHAR2(32000);
34 
35 --======================================================================+
36 --                                                                      |
37 -- Report Input Parameters                                              |
38 --                                                                      |
39 --======================================================================+
40 p_journal_source            VARCHAR2(80);
41 p_definition_code           VARCHAR2(30);
42 p_start_date                DATE;
43 p_as_of_date                DATE;
44 p_third_party_id            VARCHAR2(30);
45 p_show_trx_detail_flag      VARCHAR2(1);
46 p_incl_write_off_flag       VARCHAR2(1);
47 p_coa_id                    NUMBER(15);
48 p_account_from              VARCHAR2(240);
49 p_account_to                VARCHAR2(240);
50 p_acct_balance              VARCHAR2(30);
51 p_security_flag             VARCHAR2(30);
52 p_custom_param_1            VARCHAR2(80);
53 p_custom_param_2            VARCHAR2(80);
54 p_custom_param_3            VARCHAR2(80);
55 p_valuation_method          xla_transaction_entities.valuation_method%TYPE;
56 p_security_id_int_1         xla_transaction_entities.security_id_int_1%TYPE;
57 p_security_id_char_1        xla_transaction_entities.security_id_char_1%TYPE;
58 
59 --======================================================================+
60 --                                                                      |
61 -- Displayed Parameter Values                                           |
62 --                                                                      |
63 --======================================================================+
64 p_journal_source_dsp        VARCHAR2(80);
65 p_report_definition_dsp     VARCHAR2(80);
66 p_third_party_name          VARCHAR2(360);
67 p_show_trx_detail_dsp       VARCHAR2(80);
68 p_incl_write_off_dsp        VARCHAR2(80);
69 p_acct_balance_dsp          VARCHAR2(80);
70 
71 
72 /*======================================================================+
73 |                                                                       |
74 | Public Function                                                       |
75 |                                                                       |
76 | BeforeReport                                                          |
77 |                                                                       |
78 | Logic for Before Report Trigger                                       |
79 |                                                                       |
80 +======================================================================*/
81 FUNCTION before_report
82 RETURN BOOLEAN;
83 
84 END xla_tb_report_pvt;