DBA Data[Home] [Help]

PACKAGE: APPS.JA_CN_CR_EXPORT_PKG

Source


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