I have an internal table and want to update specific fields of the DB table based on values of the internal table. I tried both UPDATE and MODIFY clauses but it doesn't work.
The issue is that UPDATE accepts itab as a data source but doesn't allow specifying wanted fields, while MODIFY allows doing that with TRANSPORTING, but accepts only work area.
How can I update specific fields of the database table from itab?
Thanks.