DBA Data[Home] [Help]

PACKAGE: APPS.XLA_TB_AP_REPORT_PVT

Source


1 PACKAGE XLA_TB_AP_REPORT_PVT AS
2 /* $Header: xlatbapt.pkh 120.3.12010000.1 2008/08/18 12:33:15 nmsubram noship $ */
3 
4 --+=====================================================================+
5 --|                                                                     |
6 --|                                                                     |
7 --| Global Variables  referenced in XLAAPRPT.xml                        |
8 --|                                                                     |
9 --|                                                                     |
10 --+=====================================================================+
11 
12 --======================================================================+
13 --                                                                      |
14 -- Report Lexical Parameters                                            |
15 --                                                                      |
16 --======================================================================+
17 P_SQL_STATEMENT             VARCHAR2(32000);
18 p_app_sql_statement         VARCHAR2(32000);
19 
20 --======================================================================+
21 --                                                                      |
22 -- Report Input Parameters                                              |
23 --                                                                      |
24 --======================================================================+
25 p_journal_source            VARCHAR2(80);
26 p_definition_code           VARCHAR2(30);
27 p_start_date                DATE;
28 p_as_of_date                DATE;
29 p_third_party_id            VARCHAR2(30);
30 p_show_trx_detail_flag      VARCHAR2(1);
31 p_incl_write_off_flag       VARCHAR2(1);
32 p_coa_id                    NUMBER(15);
33 p_account_from              VARCHAR2(240);
34 p_account_to                VARCHAR2(240);
35 p_acct_balance              VARCHAR2(30);
36 p_security_flag             VARCHAR2(30);
37 p_custom_param_1            VARCHAR2(80);
38 p_custom_param_2            VARCHAR2(80);
39 p_custom_param_3            VARCHAR2(80);
40 p_valuation_method          xla_transaction_entities.valuation_method%TYPE;
41 p_security_id_int_1         xla_transaction_entities.security_id_int_1%TYPE;
42 p_security_id_char_1        xla_transaction_entities.security_id_char_1%TYPE;
43 
44 --======================================================================+
45 --                                                                      |
46 -- Displayed Parameter Values                                           |
47 --                                                                      |
48 --======================================================================+
49 p_journal_source_dsp        VARCHAR2(80);
50 p_report_definition_dsp     VARCHAR2(80);
51 p_third_party_name          VARCHAR2(80);
52 p_show_trx_detail_dsp       VARCHAR2(80);
53 p_incl_write_off_dsp        VARCHAR2(80);
54 p_acct_balance_dsp          VARCHAR2(80);
55 
56 
57 /*======================================================================+
58 |                                                                       |
59 | Public Function                                                       |
60 |                                                                       |
61 | BeforeReport                                                          |
62 |                                                                       |
63 | Logic for Before Report Trigger                                       |
64 |                                                                       |
65 +======================================================================*/
66 FUNCTION before_report
67 RETURN BOOLEAN;
68 
69 END xla_tb_ap_report_pvt;