DBA Data[Home] [Help]

PACKAGE: APPS.JA_CN_CFI_EXPORT_PKG

Source


1 PACKAGE JA_CN_CFI_EXPORT_PKG AUTHID CURRENT_USER AS
2 --$Header: JACNCFES.pls 120.1 2010/10/18 07:21:47 jianliu noship $
3 --+=======================================================================+
4 --|               Copyright (c) 1998 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|     JACNCFES.pls                                                      |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|     To export Cash Flow Item related information which defined        |
13 --|     in the system.                                                    |
14 --|                                                                       |
15 --| PROCEDURE LIST                                                        |
16 --|      PROCEDURE Add_Cash_Flow_Items                                    |
17 --|                                                                       |
18 --|                                                                       |
19 --| HISTORY                                                               |
20 --|     02-Mar-2010       Chaoqun Wu       Created                        |
21 --+======================================================================*/
22 
23 --==========================================================================
24 --  PROCEDURE NAME:
25 --
26 --   Add_Cash_Flow_Items                        Public
27 --
28 --  DESCRIPTION:
29 --
30 --    This procedure is to export Cash Flow Item related information
31 --    which defined in the system.
32 --
33 --  PARAMETERS:
34 --      In:  pn_cfs_report_id       NUMBER identifier of cash flow statment report
35 --           pn_chart_of_account_id NUMBER identifier of chart of account
36 --
37 --  DESIGN REFERENCES:
38 --    GL_Chaoqun.doc
39 --
40 --  CHANGE HISTORY:
41 --     02-Mar-2010   Chaoqun Wu  created
42 --==========================================================================
43 
44 PROCEDURE Add_Cash_Flow_Items
45 (pn_cfs_report_id       IN NUMBER
46 ,pn_chart_of_account_id IN NUMBER
47 );
48 
49 END JA_CN_CFI_EXPORT_PKG;