DBA Data[Home] [Help]

PACKAGE: APPS.JA_CN_SI_EXPORT_PROG

Source


1 PACKAGE JA_CN_SI_EXPORT_PROG AUTHID CURRENT_USER AS
2 --$Header: JACNSIPS.pls 120.1 2010/03/31 07:36:33 jianliu noship $
3 --+=======================================================================+
4 --|               Copyright (c) 1998 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|     JACNSIPS.pls                                                      |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|     Use this package to export shared information                     |
13 --|                                                                       |
14 --| PROCEDURE LIST                                                        |
15 --|      PROCEDURE Export_Shared_Information                              |
16 --|                Submit_Request                                         |
17 --|                                                                       |
18 --|                                                                       |
19 --| HISTORY                                                               |
20 --|     03/17/2010 Jason Liu       Created                                |
21 --|     03/18/2010 Qingyi Wang     Modify the paramters and service logic |
22 --+======================================================================*/
23 
24 
25 --==========================================================================
26 --  PROCEDURE NAME:
27 --
28 --    Export_Shared_Information                        Public
29 --
30 --  DESCRIPTION:
31 --
32 --    This procedure is to export shared information
33 --
34 --  PARAMETERS:
35 --      Out: pv_errbuf                    NOCOPY VARCHAR2
36 --           pv_retcode                   NOCOPY VARCHAR2
37 --      In:  pn_coa_id                    NUMBER identifier of chart of account
38 --           pn_legal_entity_id           NUMBER identifier of legal entity
39 --           pn_ledger_id                 NUMBER identifier of ledger
40 --           pv_accounting_year           VARCHAR2 accounting year
41 --
42 --
43 --
44 --  DESIGN REFERENCES:
45 --    CNAO_V2_SI_TD.doc
46 --
47 --  CHANGE HISTORY:
48 --
49 --           17-MAR-2010   Jason Liu       created
50 --           18-MAR-2010   Qingyi Wang     modify the paramters and service logic
51 --==========================================================================
52 
53 PROCEDURE Export_Shared_Information
54 ( pv_errbuf           OUT NOCOPY VARCHAR2
55 , pv_retcode          OUT NOCOPY VARCHAR2
56 , pn_coa_id           IN  NUMBER
57 , pn_legal_entity_id  IN  NUMBER
58 , pn_ledger_id        IN  NUMBER
59 , pv_accounting_year  IN  VARCHAR2
60 );
61 
62 --==========================================================================
63 --  PROCEDURE NAME:
64 --
65 --   Submit_Request                        Public
66 --
67 --  DESCRIPTION:
68 --
69 --    This procedure is to export report for shared information
70 --
71 --  PARAMETERS:
72 --      Out: pv_errbuf                    NOCOPY VARCHAR2
73 --           pv_retcode                   NOCOPY VARCHAR2
74 --      In:  pn_coa_id                    NUMBER identifier of chart of account
75 --           pn_legal_entity_id           NUMBER identifier of legal entity
76 --           pn_ledger_id                 NUMBER identifier of ledger
77 --           pv_accounting_year           VARCHAR2 accounting year
78 --           pv_source_char_set           VARCHAR2 source character set
79 --           pv_dest_char_set             VARCHAR2 destination character set
80 --
81 --  DESIGN REFERENCES:
82 --    GL_Shujuan.doc
83 --
84 --  CHANGE HISTORY:
85 --      01-Mar-2010   Qingyi Wang  created
86 --==========================================================================
87 
88 PROCEDURE Submit_Request
89 ( pv_errbuf                    OUT NOCOPY VARCHAR2
90 , pv_retcode                   OUT NOCOPY VARCHAR2
91 , pn_coa_id                    IN  NUMBER
92 , pn_legal_entity_id           IN  NUMBER
93 , pn_ledger_id                 IN  NUMBER
94 , pv_accounting_year           IN  VARCHAR2
95 , pv_source_char_set           IN  VARCHAR2
96 , pv_dest_char_set             IN  VARCHAR2
97 );
98 
99 END JA_CN_SI_EXPORT_PROG;
100