Hi All,
i am displaying my data in an ALV Report my requirement is to take the data from ALV Report(Record )and perform calculation and display the data back in the ALV Report.
Here i am follwing the link http://www.sapgenie.com/abap/controls/alvgrid.htm
and working.
Problem: i am able to get the selected row in my work area but not able to display on the screen
Transfer data from the selected row to screenm 200 and show
screen 200
CLEAR g_screen200.
MOVE-CORRESPONDING g_wa_sflight TO g_screen200.
LEAVE TO SCREEN '200'.
The above code was used to transfer the data but it does not work for me may be i am missing some thing.
Did any one encountered the same problem then plz do suggest me the remedy.