DBA Data[Home] [Help]

PACKAGE: APPS.JA_CN_APAR_COMMON_PKG

Source


1 PACKAGE JA_CN_APAR_COMMON_PKG AUTHID CURRENT_USER AS
2 --$Header: JACNPRCS.pls 120.0 2010/05/13 09:17:15 wuwu noship $
3 --+=======================================================================+
4 --|               Copyright (c) 1998 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|     JACNPRCS.pls                                                      |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|     	To export document type and transaction type              |                                                 |
13 --|                                                                       |
14 --| PROCEDURE LIST                                                        |
15 --|      PROCEDURE Add_Document_Type                                      |
16 --|      PROCEDURE Add_Transaction_Type                                   |
17 --|                                                                       |
18 --|                                                                       |
19 --| HISTORY                                                               |
20 --|     01-Apr-2010   Chaoqun Wu  created                                 |
21 --+======================================================================*/
22 
23 --==========================================================================
24 --  PROCEDURE NAME:
25 --
26 --   Add_Document_Type                        Public
27 --
28 --  DESCRIPTION:
29 --
30 --    This procedure is to export document type
31 --
32 --  PARAMETERS:
33 --     NULL
34 --
35 --  DESIGN REFERENCES:
36 --    APAR_Chaoqun.doc
37 --
38 --  CHANGE HISTORY:
39 --     01-Apr-2010   Chaoqun Wu  created
40 --==========================================================================
41 
42 PROCEDURE Add_Document_Type;
43 
44 --==========================================================================
45 --  PROCEDURE NAME:
46 --
47 --   Add_Transaction_Type                        Public
48 --
49 --  DESCRIPTION:
50 --
51 --    This procedure is to export transaction type
52 --
53 --  PARAMETERS:
54 --      In:  pn_legal_entity_id     NUMBER   identifier of legal entity
55 --           pn_ledger_id           NUMBER   identifier of ledger
56 --           pv_accounting_year     VARCHAR2 accounting year
57 --
58 --  DESIGN REFERENCES:
59 --    APAR_Chaoqun.doc
60 --
61 --  CHANGE HISTORY:
62 --     01-Apr-2010   Chaoqun Wu  created
63 --==========================================================================
64 
65 PROCEDURE Add_Transaction_Type
66 (pn_legal_entity_id  IN NUMBER
67 ,pn_ledger_id        IN NUMBER
68 ,pv_accounting_year  IN VARCHAR2
69 );
70 
71 END JA_CN_APAR_COMMON_PKG;