DBA Data[Home] [Help]

APPS.IGI_IAC_TRANSFERS_PKG dependencies on FA_ADDITIONS

Line 1044: FROM fa_additions

1040: -- Find the asset number for the asset_id (for exception messages) (keep)
1041: CURSOR c_asset_num
1042: IS
1043: SELECT asset_number
1044: FROM fa_additions
1045: WHERE asset_id=p_asset_hdr_rec.asset_id;
1046:
1047: -- retrieve salvage value and cost of the asset from fa_books (keep)
1048: CURSOR c_get_asset_book(p_asset_id fa_books.asset_id%TYPE,

Line 1125: l_asset_num FA_ADDITIONS.asset_number%TYPE;

1121:
1122: l_ab_amounts asset_rec_type;
1123: l_iac_fa_dep_amounts iac_fa_deprn_rec_type;
1124:
1125: l_asset_num FA_ADDITIONS.asset_number%TYPE;
1126: l_units FA_DISTRIBUTION_HISTORY.units_assigned%TYPE;
1127: l_transfer_units FA_DISTRIBUTION_HISTORY.units_assigned%TYPE;
1128:
1129: l_interco_count NUMBER;

Line 2634: p_asset_id fa_additions_b.asset_id%type,

2630: --| are updated accordingly |
2631: -- ========================================================================================+
2632:
2633: FUNCTION Do_prior_transfer(p_book_type_code fa_books.book_type_code%type,
2634: p_asset_id fa_additions_b.asset_id%type,
2635: p_category_id fa_categories.category_id%type,
2636: p_transaction_header_id fa_transaction_headers.transaction_header_id%type,
2637: p_cost fa_books.cost%type,
2638: p_adjusted_cost fa_books.adjusted_cost%type,

Line 2640: p_current_units fa_additions_b.current_units%type,

2636: p_transaction_header_id fa_transaction_headers.transaction_header_id%type,
2637: p_cost fa_books.cost%type,
2638: p_adjusted_cost fa_books.adjusted_cost%type,
2639: p_salvage_value fa_books.salvage_value%type,
2640: p_current_units fa_additions_b.current_units%type,
2641: p_life_in_months fa_books.life_in_months%type,
2642: p_calling_function varchar2,
2643: p_event_id number --R12 uptake
2644: )