DBA Data[Home] [Help]

PACKAGE: APPS.JA_CN_PS_SI_EXPORT_PKG

Source


1 PACKAGE JA_CN_PS_SI_EXPORT_PKG AUTHID CURRENT_USER AS
2 --$Header: JACNSPGS.pls 120.0 2010/08/24 06:08:18 wuliu noship $
3 --+=======================================================================+
4 --|               Copyright (c) 1998 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|     JACNSPGS.pls                                                      |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|     Use this package to export Shared Information                     |
13 --|     for Public Sector                                                 |
14 --|                                                                       |
15 --| PROCEDURE LIST                                                        |
16 --|      PROCEDURE Export_Shared_Information                              |
17 --|      PROCEDURE Submit_Request                                         |
18 --|                                                                       |
19 --| HISTORY                                                               |
20 --|     09/AUG/2010 Wuhua Liu       Created                               |
21 --+======================================================================*/
22 GV_MODULE_PREFIX VARCHAR2(30) := 'JA_CN_PS_SI_EXPORT_PKG';
23 --==========================================================================
24 --  PROCEDURE NAME:
25 --
26 --    Export_Shared_Information                      Public
27 --
28 --  DESCRIPTION:
29 --
30 --    This procedure is to export Shared Information
31 --    for public sector
32 --
33 --  PARAMETERS:
34 --      Out: pv_errbuf              standard out parameter
35 --                                   for concurrent program
36 --           pv_retcode             standard out parameter
37 --                                   for concurrent program
38 --      In:  pn_coa_id              Chart of Accout ID
39 --           pn_legal_entity_id     Legal entity ID
40 --           pn_ledger_id           Ledeger ID
41 --           pn_accounting_year     Accounting year
42 --
43 --
44 --  DESIGN REFERENCES:
45 --    TDD_1213_FIN_GL_P_CNAOV2_SI.doc
46 --
47 --  CHANGE HISTORY:
48 --
49 --           09-AUG-2010   Wuhua Liu  created
50 PROCEDURE Export_Shared_Information
51 ( pv_errbuf          OUT NOCOPY VARCHAR2
52 , pv_retcode         OUT NOCOPY VARCHAR2
53 , pn_coa_id          IN         NUMBER
54 , pn_legal_entity_id IN         NUMBER
55 , pn_ledger_id       IN         NUMBER
56 , pn_accounting_year IN         NUMBER
57 );
58 --==========================================================================
59 --  PROCEDURE NAME:
60 --
61 --    Export_Submit_Request                      Public
62 --
63 --  DESCRIPTION:
64 --
65 --    This procedure is to export report of Shared Information
66 --    for public sector
67 --
68 --  PARAMETERS:
69 --      Out: pv_errbuf              standard out parameter
70 --                                   for concurrent program
71 --           pv_retcode             standard out parameter
72 --                                   for concurrent program
73 --      In:  pn_coa_id              Chart of Accout ID
74 --           pn_legal_entity_id     Legal entity ID
75 --           pn_ledger_id           Ledeger ID
76 --           pn_accounting_year     Accounting Year
77 --           pv_source_char_set     Source Character Set
78 --           pv_dest_char_set       Destination Character Set
79 --
80 --
81 --  DESIGN REFERENCES:
82 --    TDD_1213_FIN_GL_P_CNAOV2_SI.doc
83 --
84 --  CHANGE HISTORY:
85 --
86 --           09-AUG-2010   Wuhua Liu  created
87 PROCEDURE Submit_Request
88 ( pv_errbuf          OUT NOCOPY VARCHAR2
89 , pv_retcode         OUT NOCOPY VARCHAR2
90 , pn_coa_id          IN         NUMBER
91 , pn_legal_entity_id IN         NUMBER
92 , pn_ledger_id       IN         NUMBER
93 , pn_accounting_year IN         NUMBER
94 , pv_source_char_set IN         VARCHAR2
95 , pv_dest_char_set   IN         VARCHAR2
96 );
97 
98 END JA_CN_PS_SI_EXPORT_PKG;
99