[Home] [Help]
5345: -- get the description
5346: update ar_trx_lines_gt
5347: SET description = (
5348: select description
5349: from mtl_system_items_vl
5350: WHERE inventory_item_id = cItemFlexRec.inventory_item_id
5351: AND organization_id = pg_so_org_id)
5352: WHERE trx_line_id = cItemFlexRec.trx_line_id
5353: AND description is NULL;