DBA Data[Home] [Help]

PACKAGE: APPS.JL_ZZ_GL_INFL_ADJ_PKG

Source


1 PACKAGE JL_ZZ_GL_INFL_ADJ_PKG AUTHID CURRENT_USER AS
2 /* $Header: jlzzgaxs.pls 115.2 2002/11/21 02:01:38 vsidhart ship $ */
3 
4 ----------------------------------------------------------------------------
5 -- FUNCTION                                                               --
6 --   inflation_adjustment                                                 --
7 --                                                                        --
8 -- DESCRIPTION                                                            --
9 --   Use this process to perform the Inflation Adjustment for Argentina   --
10 --                                                                        --
11 -- PURPOSE:                                                               --
12 --   Oracle Applications Rel 11.0                                         --
13 --   Product : Oracle General Ledger - Latin America                      --
14 --                                                                        --
15 -- PARAMETERS:                                                            --
16 --   Inflation Run Id : Execution id                                      --
17 --   From period      : First period to be adjusted                       --
18 --   To Period        : Last period to be adjusted                        --
19 --   Set of Books Id  : Set of books to be adjusted                       --
20 --   Index Id         : used to adjust the accounts                       --
21 --   Error Message    : Returned to the report                            --
22 --   Error Message Number : Idem                                          --
23 --   Error Message Code : Idem                                            --
24 --                                                                        --
25 -- HISTORY:                                                               --
26 --   19/03/97   German Bertot                                             --
27 --   20/08/97   German Bertot  Changed the procedure definition to call   --
28 --                            it from the Infl. Adj. Report instead of    --
29 --                            submiting it as a concurrent request.       --
30 ----------------------------------------------------------------------------
31 
32   FUNCTION INFLATION_ADJUSTMENT (p_inflation_adj_run_id IN NUMBER
33                                , p_adjust_from_period   IN VARCHAR2
34                                , p_adjust_to_period     IN VARCHAR2
35                                , p_set_of_books_id      IN NUMBER
36                                , p_infl_adj_index_id    IN NUMBER
37                                , p_group_id             IN OUT NOCOPY NUMBER
38                                , p_err_msg_name         IN OUT NOCOPY VARCHAR2
39                                , p_err_msg_num          IN OUT NOCOPY NUMBER
40                                , p_err_msg_code         IN OUT NOCOPY VARCHAR2)
41    RETURN NUMBER;
42 
43 END JL_ZZ_GL_INFL_ADJ_PKG;