DBA Data[Home] [Help]

PACKAGE: APPS.JA_CN_ACC_JE_ITEMIZATION_PKG

Source


1 PACKAGE Ja_Cn_Acc_Je_Itemization_Pkg AS
2   --$Header: JACNAJIS.pls 120.0.12000000.1 2007/08/13 14:09:07 qzhao noship $
3   --+=======================================================================+
4   --|               Copyright (c) 2006 Oracle Corporation                   |
5   --|                       Redwood Shores, CA, USA                         |
6   --|                         All rights reserved.                          |
7   --+=======================================================================+
8   --| FILENAME                                                              |
9   --|       JACNAJIS.pls                                                    |
10   --|                                                                       |
11   --| DESCRIPTION                                                           |
12   --|     This package is used in account and journal itemizatoin to        |
13   --|     generate                                                          |
14   --|                                                                       |
15   --| PROCEDURE LIST                                                        |
16   --|      PROCEDURE populate_journal_of_period                             |
17   --|      PROCEDURE get_description_from_GIS                               |
18   --|      PROCEDURE unitemize_journal_lines                                |
19   --|      PROCEDURE generate_code_combination_view                         |
20   --|      PROCEDURE get_period_range                                       |
21   --|      PROCEDURE transfer_gl_sla_to_cnao                                |
22   --|      PROCEDURE generate_journal_and_line_num                          |
23   --|                                                                       |
24   --| HISTORY                                                               |
25   --|      04/12/2007     Qingjun Zhao          Created                     |
26   --+========================================================================
27 
28   --=========================================================================
29   --  PROCEDURE NAME:
30   --    transfer_gl_sla_to_cnao                   Public
31   --
32   --  DESCRIPTION:
33   --        This is main procedure through which other procedures are called
34   --        according to source and category of journal.Then call generate
35   --        journal number and journal line number procedure and call post
36   --        program
37   --  PARAMETERS:
38   --     Out: errbuf                 Mandatory parameter for PL/SQL concurrent
39   --                                 programs
40   --     Out: retcode                Mandatory parameter for PL/SQL concurrent
41   --                                 programs
42   --     In: P_chart_of_accounts_id  Id of Chart of Accounts
43   --     In: p_period_name           Accounting period name
44   --     In: p_legal_entity_ID       Legal entity id
45   --
46   --  DESIGN REFERENCES:
47   --      None
48   --
49   --  CHANGE HISTORY:
50   --      04/12/2007     Qingjun Zhao          Created
51   --===========================================================================
52 
53   PROCEDURE Transfer_Gl_Sla_To_Cnao(Errbuf                 OUT NOCOPY VARCHAR2,
54                                     Retcode                OUT NOCOPY VARCHAR2,
55                                     p_Chart_Of_Accounts_Id IN NUMBER,
56                                     p_Ledger_Id            IN NUMBER,
57                                     p_Legal_Entity_Id      IN NUMBER,
58                                     p_Period_Name          IN VARCHAR2);
59 
60 END Ja_Cn_Acc_Je_Itemization_Pkg;