DBA Data[Home] [Help]

PACKAGE: APPS.JA_CN_GL_EXPORT_PKG

Source


1 PACKAGE JA_CN_GL_EXPORT_PKG AUTHID CURRENT_USER AS
2 --$Header: JACNGLES.pls 120.1 2010/10/18 07:22:46 jianliu noship $
3 --+=======================================================================+
4 --|               Copyright (c) 1998 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|     JACNGLES.pls                                                      |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|     Use this package to export non-FSG report for general ledger      |
13 --|                                                                       |
14 --| PROCEDURE LIST                                                        |
15 --|      PROCEDURE Export_GL                                              |
16 --|                                                                       |
17 --|                                                                       |
18 --| HISTORY                                                               |
19 --|     01-Mar-2010       Chaoqun Wu       Created                        |
20 --+======================================================================*/
21 
22 --==========================================================================
23 --  PROCEDURE NAME:
24 --
25 --   Export_GL                        Public
26 --
27 --  DESCRIPTION:
28 --
29 --    This procedure is to export non-FSG report for general ledger
30 --
31 --  PARAMETERS:
32 --      Out: pv_errbuf                 NOCOPY VARCHAR2
33 --           pv_retcode                NOCOPY VARCHAR2
34 --      In:  pn_legal_entity_id        NUMBER identifier of legal entity
35 --           pn_chart_of_account_id    NUMBER identifier of chart of account
36 --           pn_ledger_id              NUMBER identifier of ledger
37 --           pv_adhoc_prefix           VARCHAR2 adhoc prefix
38 --           pv_industry               VARCHAR2 industry
39 --           pv_accounting_year        VARCHAR2 accounting year
40 --           pv_period_from            VARCHAR2 period from
41 --           pv_period_to              VARCHAR2 period to
42 --           pn_cfs_report_id          NUMBER identifier of cfs report
43 --           pv_xml_template_language  VARCHAR2 xml template language
44 --           pv_xml_template_territory VARCHAR2 xml template territory
45 --           pv_xml_output_format      VARCHAR2 xml output format
46 --
47 --  DESIGN REFERENCES:
48 --    GL_Chaoqun.doc
49 --
50 --  CHANGE HISTORY:
51 --      01-Mar-2010   Chaoqun Wu  created
52 --==========================================================================
53 PROCEDURE Export_GL
54 (pv_errbuf                 OUT NOCOPY VARCHAR2
55 ,pv_retcode                OUT NOCOPY VARCHAR2
56 ,pn_legal_entity_id        IN  NUMBER
57 ,pn_chart_of_account_id    IN  NUMBER
58 ,pn_ledger_id              IN  NUMBER
59 ,pv_adhoc_prefix           IN  VARCHAR2
60 ,pv_industry               IN  VARCHAR2
61 ,pv_accounting_year        IN  VARCHAR2
62 ,pv_period_from            IN  VARCHAR2
63 ,pv_period_to              IN  VARCHAR2
64 ,pn_cfs_report_id          IN  NUMBER
65 ,pv_xml_template_language  IN  VARCHAR2
66 ,pv_xml_template_territory IN  VARCHAR2
67 ,pv_xml_output_format      IN  VARCHAR2
68 );
69 
70 END JA_CN_GL_EXPORT_PKG;