Hi experts ;
I have a dialog program which is updating my custom Ztable.
I created a screen and designed for data recording to my Ztable and i want to see contents of Ztable at same screen, on ALV container.
Problem : When i created record at once on my screen , i can see my updated data from Ztable in ALV container, but if i try to record another one(at same run time), Ztable is updating but i can't see in ALV container. ALV container list does not refreshing for my Ztable. When i checked internal table contents on debug mode, i can see my updated record but i can't see in my ALV container list.
I'm using set_table_for_first_display method. I tried method refresh_table_display ,too..
code is :
select * from ztable into table gt_itab.
call method grid->set_table_for_first_display
exporting
i_structure_name = 'ztable'
i_save = 'A'
changing
it_outtab = gt_itab[].
Please help to me.
Thanks, all...