DBA Data[Home] [Help]

PACKAGE: APPS.JA_CN_SM_EXPORT_PKG

Source


1 PACKAGE JA_CN_SM_EXPORT_PKG AUTHID CURRENT_USER AS
2 --$Header: JACNSMES.pls 120.0 2010/03/27 09:04:57 weihuang noship $
3 --+=======================================================================+
4 --|               Copyright (c) 2010 Oracle Corporation
5 --|                       Redwood Shores, CA, USA
6 --|                         All rights reserved.
7 --+=======================================================================
8 --| FILENAME
9 --|     JACNSMES.pls
10 --|
11 --| DESCRIPTION
12 --|
13 --|     This package contains the following PL/SQL tables/procedures/functions
14 --|     to export the accounting related Settlement Method which have
15 --|     transaction with current legal entity in given accounting year.
16 --|
17 --| PROCEDURE LIST
18 --|   	Add_Settlement_Method
19 --|
20 --| HISTORY
21 --|   11-Mar-2010     Wei Huang Created
22 --|
23 --+======================================================================*/
24 
25 --==========================================================================
26 --  PROCEDURE NAME:
27 --
28 --    	Add_Settlement_Method               Public
29 --
30 --  DESCRIPTION:
31 --
32 --      This procedure is to export the accounting related Settlement Method
33 --      which have transaction with current legal entity in given accounting
34 --      year.
35 --
36 --  PARAMETERS:
37 --      In:  pn_ledger_id  Legder ID
38 --           pn_legal_entity_id  LEGAL_ENTITY_ID
39 --           pv_accounting_year  Accounting Year
40 --
41 --     Out:
42 --
43 --  DESIGN REFERENCES:
44 --
45 --
46 --  CHANGE HISTORY:
47 --     11-Mar-2010     Wei Huang Created
48 --
49 --===========================================================================
50 PROCEDURE Add_Settlement_Method
51 (pn_ledger_id       IN NUMBER
52 ,pn_legal_entity_id IN NUMBER
53 ,pv_accounting_year IN VARCHAR2
54 );
55 
56 END JA_CN_SM_EXPORT_PKG;