How to change the old BW3.x code (tables with header) to BW7.x (tables without header)
OLD code:
LOOP AT p_package.
gv_tabix = sy-tabix.
" changing header ... and more
MODIFY p_package INDEX gv_tabix.
Here the header line gets changed and the table is updated using modify
and index
Unfortunately I do not see how to use the index
keyword on tables without a header.
So far I coded:
LOOP AT p_package into p_package_line.
gv_tabix = sy-tabix.
" changing p_package_line ...
MODIFY table p_package from p_package_line
But I'm not sure if it is correct.