DBA Data[Home] [Help]

PACKAGE: APPS.FA_EXP_PKG

Source


1 PACKAGE FA_EXP_PKG AUTHID CURRENT_USER as
2 /* $Header: FAEXADJS.pls 120.3 2009/03/26 21:20:06 bridgway ship $ */
3 
4 
5 /*
6  --------------------------------------------------------------------------
7  *
8  * Name
9  *              faxbds
10  *
11  * Description
12  *              Builds the depreciation structure
13  *
14  * Parameters
15  *		fin_info_ptr - fin_info structure IN OUT
16  *		dpr_ptr - depreciation structure OUT
17  *		dist_book - distribution book OUT
18  *		deprn_rsv - depreciation reserve OUT
19  *		amortized_flag - amortization flag
20  *
21  * Modifies
22  *		X_fin_info_ptr
23  *		X_dpr_ptr
24  *		X_dist_book
25  *		X_deprn_rsv
26  *
27  * Returns
28  *              True on successful retrieval. Otherwise False.
29  *
30  * Notes
31  *		Shared by other Expense user exits
32  *
33  * History
34  *
35  *--------------------------------------------------------------------------
36 */
37 Function faxbds
38 	(
39 	X_fin_info_ptr in out nocopy fa_std_types.fin_info_struct
40 	,X_dpr_ptr out nocopy fa_std_types.dpr_struct
41 	,X_dist_book out nocopy varchar2
42 	,X_deprn_rsv out nocopy number
43 	,X_amortized_flag boolean
44         ,X_mrc_sob_type_code varchar2
45 	, p_log_level_rec        IN     FA_API_TYPES.log_level_rec_type)
46 return boolean;
47 
48 /*
49  --------------------------------------------------------------------------
50  *
51  * Name
52  *              faxexp
53  *
54  * Description
55  *
56  *
57  * Parameters
58  *              X_fin_info_ptr - fin_info structure IN OUT
59  *		X_new_adj_cost - new adjusted cost OUT
60  *		X_ccid - GL code combination id
61  *		X_sysdate_val - system date
62  *		X_last_updated_by - user id
63  *		X_last_update_login - login id
64  *		X_ins_adj_flag - insert adjustment flag
65  *		X_deprn_exp - depreciation expense OUT
66  *
67  * Modifies
68  *              X_fin_info_ptr
69  *		X_new_adj_cost
70  *		X_deprn_exp
71  *
72  * Returns
73  *              True on successful retrieval. Otherwise False.
74  *
75  * Notes
76  *              Used by any program that needs to expense a
77  *		financial information change
78  *
79  * History
80  *
81  *--------------------------------------------------------------------------
82 */
83 Function faxexp
84 	(
85 	X_fin_info_ptr in out nocopy fa_std_types.fin_info_struct
86 	,X_new_adj_cost out nocopy number
87 	,X_ccid integer
88 	,X_sysdate_val date
89 	,X_last_updated_by number
90 	,X_last_update_login number
91 	,X_ins_adj_flag boolean
92         ,X_mrc_sob_type_code varchar2
93 	,X_deprn_exp out nocopy number
94 	,X_bonus_deprn_exp out nocopy number
95 	,X_new_formula_factor in out nocopy number
96 	, p_log_level_rec        IN     FA_API_TYPES.log_level_rec_type)
97 return boolean;
98 
99 
100 END FA_EXP_PKG;