DBA Data[Home] [Help]

PACKAGE: APPS.JA_CN_PS_SI_PRJ_EXPORT_PKG

Source


1 PACKAGE JA_CN_PS_SI_PRJ_EXPORT_PKG AUTHID CURRENT_USER AS
2 --$Header: JACNPRJS.pls 120.0 2010/08/24 05:55:37 wuliu noship $
3 --+=======================================================================+
4 --|               Copyright (c) 1998 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|     JACNPRJS.pls                                                      |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|     Use this package to export Project Information                    |
13 --|     for Public Sector                                                 |
14 --|                                                                       |
15 --| PROCEDURE LIST                                                        |
16 --|      PROCEDURE Add_Project_Information                                |
17 --|                                                                       |
18 --|                                                                       |
19 --| HISTORY                                                               |
20 --|     06/AUG/2010 Wuhua Liu       Created                               |
21 --+======================================================================*/
22 GV_MODULE_PREFIX VARCHAR2(30) := 'JA_CN_PS_SI_PRJ_EXPORT_PKG';
23 TYPE cur_type IS REF CURSOR;
24 --==========================================================================
25 --  PROCEDURE NAME:
26 --
27 --    Add_Project_Information                      Public
28 --
29 --  DESCRIPTION:
30 --
31 --    This procedure is to export Project Information
32 --    for public sector
33 --
34 --  PARAMETERS:
35 --      In:  pn_coa_id              Chart of Accout ID
36 --           pn_accounting_year     Accounting Year
37 --
38 --  DESIGN REFERENCES:
39 --    TDD_1213_FIN_GL_P_CNAOV2_SI.doc
40 --
41 --  CHANGE HISTORY:
42 --
43 --           05-AUG-2010   Wuhua Liu  created
44 PROCEDURE Add_Project_Information
45 ( pn_coa_id          IN NUMBER
46 , pn_accounting_year IN NUMBER
47 );
48 END JA_CN_PS_SI_PRJ_EXPORT_PKG;
49