DBA Data[Home] [Help]

APPS.FA_INS_ADJ_PVT dependencies on FA_API_TYPES

Line 5: (p_trans_rec IN FA_API_TYPES.trans_rec_type,

1: PACKAGE FA_INS_ADJ_PVT AS
2: /* $Header: FAVIATS.pls 120.3.12010000.1 2008/07/28 13:18:34 appldev ship $ */
3:
4: Function faxiat
5: (p_trans_rec IN FA_API_TYPES.trans_rec_type,
6: p_asset_hdr_rec IN FA_API_TYPES.asset_hdr_rec_type,
7: p_asset_desc_rec IN FA_API_TYPES.asset_desc_rec_type,
8: p_asset_cat_rec IN FA_API_TYPES.asset_cat_rec_type,
9: p_asset_type_rec IN FA_API_TYPES.asset_type_rec_type,

Line 6: p_asset_hdr_rec IN FA_API_TYPES.asset_hdr_rec_type,

2: /* $Header: FAVIATS.pls 120.3.12010000.1 2008/07/28 13:18:34 appldev ship $ */
3:
4: Function faxiat
5: (p_trans_rec IN FA_API_TYPES.trans_rec_type,
6: p_asset_hdr_rec IN FA_API_TYPES.asset_hdr_rec_type,
7: p_asset_desc_rec IN FA_API_TYPES.asset_desc_rec_type,
8: p_asset_cat_rec IN FA_API_TYPES.asset_cat_rec_type,
9: p_asset_type_rec IN FA_API_TYPES.asset_type_rec_type,
10: p_cost IN number DEFAULT 0,

Line 7: p_asset_desc_rec IN FA_API_TYPES.asset_desc_rec_type,

3:
4: Function faxiat
5: (p_trans_rec IN FA_API_TYPES.trans_rec_type,
6: p_asset_hdr_rec IN FA_API_TYPES.asset_hdr_rec_type,
7: p_asset_desc_rec IN FA_API_TYPES.asset_desc_rec_type,
8: p_asset_cat_rec IN FA_API_TYPES.asset_cat_rec_type,
9: p_asset_type_rec IN FA_API_TYPES.asset_type_rec_type,
10: p_cost IN number DEFAULT 0,
11: p_clearing IN number DEFAULT 0,

Line 8: p_asset_cat_rec IN FA_API_TYPES.asset_cat_rec_type,

4: Function faxiat
5: (p_trans_rec IN FA_API_TYPES.trans_rec_type,
6: p_asset_hdr_rec IN FA_API_TYPES.asset_hdr_rec_type,
7: p_asset_desc_rec IN FA_API_TYPES.asset_desc_rec_type,
8: p_asset_cat_rec IN FA_API_TYPES.asset_cat_rec_type,
9: p_asset_type_rec IN FA_API_TYPES.asset_type_rec_type,
10: p_cost IN number DEFAULT 0,
11: p_clearing IN number DEFAULT 0,
12: p_deprn_expense IN number DEFAULT 0,

Line 9: p_asset_type_rec IN FA_API_TYPES.asset_type_rec_type,

5: (p_trans_rec IN FA_API_TYPES.trans_rec_type,
6: p_asset_hdr_rec IN FA_API_TYPES.asset_hdr_rec_type,
7: p_asset_desc_rec IN FA_API_TYPES.asset_desc_rec_type,
8: p_asset_cat_rec IN FA_API_TYPES.asset_cat_rec_type,
9: p_asset_type_rec IN FA_API_TYPES.asset_type_rec_type,
10: p_cost IN number DEFAULT 0,
11: p_clearing IN number DEFAULT 0,
12: p_deprn_expense IN number DEFAULT 0,
13: p_bonus_expense IN number DEFAULT 0,

Line 20: p_log_level_rec in fa_api_types.log_level_rec_type default null

16: p_ann_adj_amt IN number DEFAULT 0,
17: p_track_member_flag IN varchar2 DEFAULT NULL,
18: p_mrc_sob_type_code IN varchar2,
19: p_calling_fn IN VARCHAR2,
20: p_log_level_rec in fa_api_types.log_level_rec_type default null
21: ) return boolean;
22:
23: End FA_INS_ADJ_PVT;