Update of expense_code_combination_id in FA_Mass_Additions Table
UPDATE FA_MASS_ADDITIONS
SET expense_code_combination_id = v_new_ccid
WHERE mass_addition_id = cur_rec.mass_addition_id
AND book_type_code = cur_rec.book_type_code
AND asset_category_id = cur_rec.asset_category_id;
I have verified the data meets the conditions in where clause. Can anyone help me with this issue?