Hi experts,
I have one report which has got 2 alv grids in the output. The first alv grid(grid1) has hyperlinks on two fields( suppose f1 and f2 ). The second grid (grid2) is displayed when we click on the hyperlink of f1. And when we click on f2 hyperlink, it's displaying one more grid in a separate screen.
Issue I am facing here is that, By clicking on the f1 hyperlink the grid2 is displayed perfectly but when clicking the f2 hyperlink(which displays grid in a separate screen) and after coming back and again clicking on the f1 hyperlink the 2nd grid is not displaying correctly.
I am using the below code to refresh the grid2 but looks like I am missing something else also.
l_refresh-row = 'X'.
CALL METHOD grid2->refresh_table_display
EXPORTING
is_stable = l_refresh.
Could you please help me out!!!