DBA Data[Home] [Help]

PACKAGE: APPS.XLA_TB_AP_REPORT_PVT

Source


1 PACKAGE XLA_TB_AP_REPORT_PVT AUTHID CURRENT_USER AS
2 /* $Header: xlatbapt.pkh 120.3.12010000.4 2009/12/07 06:52:13 vgopiset 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(360);
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 P_INCLUDE_SLA_MANUALS_UNPOSTED  VARCHAR2(1);
57 P_INC_SLA_MANUALS_UNPOSTED      VARCHAR2(30); --bug#7489252
58 
59 /* parameters added for bug#8773522 */
60 P_SUMMARY_SQL_STATEMENT         VARCHAR2(32000);
61 P_REPORT_STYLE              	VARCHAR2(80);
62 P_REPORT         		VARCHAR2(30);
63 P_REPORT_MODE_DSP               VARCHAR2(80);
64 /* end for  bug#8773522 */
65 
66 
67 /*======================================================================+
68 |                                                                       |
69 | Public Function                                                       |
70 |                                                                       |
71 | BeforeReport                                                          |
72 |                                                                       |
73 | Logic for Before Report Trigger                                       |
74 |                                                                       |
75 +======================================================================*/
76 FUNCTION before_report
77 RETURN BOOLEAN;
78 
79 END xla_tb_ap_report_pvt;