Hi,
I have one query regarding internal table.
my que is like
gs_itab-land1 = ls_lfa1-land1.
gs_itab-name1 = ls_lfa1-name1.
append gs_itab to gt_itab.
now i did some calculation & calculated TAXBS.
gs_itab-taxbs = lv_taxbs.
*now my req is to populate the taxbs in my internal table gt_itab.
*my ques is i have to first as append it to internal table then modify or i have to modify directly.
append gs_itab to gt_itab.
or
modify gt_itab from gs_itab transporting taxbs.
could u pls tell me which one is write approch.