DBA Data[Home] [Help]

APPS.FA_RETIREMENT_PVT dependencies on FA_ASSET_HISTORY

Line 971: FA_ASSET_HISTORY_PKG.Update_Row

967: -- these only if it was partial unit retirement
968: --
969: if (l_asset_desc_rec_m.current_units > p_asset_retire_rec.units_retired) then
970: -- terminate old asset_history
971: FA_ASSET_HISTORY_PKG.Update_Row
972: (X_Asset_Id => p_asset_hdr_rec.asset_id,
973: X_Date_Ineffective => p_trans_rec.who_info.last_update_date,
974: X_Transaction_Header_Id_Out => p_trans_rec.transaction_header_id,
975: X_Last_Update_Date => p_trans_rec.who_info.last_update_date,

Line 986: FA_ASSET_HISTORY_PKG.Insert_Row

982: raise rein_err;
983: end if;
984:
985: -- insert new row with new units
986: FA_ASSET_HISTORY_PKG.Insert_Row
987: (X_Rowid => l_rowid,
988: X_Asset_Id => p_asset_hdr_rec.asset_id,
989: X_Category_Id => p_asset_cat_rec.category_id,
990: X_Asset_Type => p_asset_type_rec.asset_type,

Line 3736: from fa_asset_history

3732: -- +++++ Get Current Unit of Group Asset +++++
3733: cursor c_get_unit is
3734: select units,
3735: category_id
3736: from fa_asset_history
3737: where asset_id = p_asset_id
3738: and transaction_header_id_out is null;
3739:
3740: l_adj fa_adjust_type_pkg.fa_adj_row_struct;