DBA Data[Home] [Help]

PACKAGE: APPS.IGI_IAC_REVAL_INIT_CONTROL

Source


1 PACKAGE IGI_IAC_REVAL_INIT_CONTROL AUTHID CURRENT_USER AS
2 -- $Header: igiiaris.pls 120.4.12000000.1 2007/08/01 16:17:19 npandya ship $
3 l_rec igi_iac_revaluation_rates%rowtype;  -- create this for quicker access via sql navigator
4 
5 /*
6 -- initialize the control array if submitted from the IGIIARVC concurrent program!
7 -- this is done for each asset.
8 */
9 
10 function init_control_for_srs    ( fp_asset_id               in number
11                                  , fp_book_type_code         in varchar2
12                                  , fp_revaluation_id         in number
13                                  , fp_revaluation_mode       in varchar2
14                                  , fp_period_counter         in number
15                                  , fp_iac_reval_control_type out NOCOPY IGI_IAC_TYPES.iac_reval_control_type
16                                  )
17 return  boolean;
18 
19 /*
20 -- initialize if called for calculation from the form
21 */
22 
23 function init_control_for_calc    ( fp_asset_id               in number
24                                   , fp_book_type_code         in varchar2
25                                   , fp_revaluation_id         in number
26                                   , fp_revaluation_mode       in varchar2
27                                   , fp_period_counter         in number
28                                   , fp_iac_reval_control_type out NOCOPY IGI_IAC_TYPES.iac_reval_control_type
29                                  )
30 return  boolean;
31 
32 END;