Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ALV Report

Former Member
0 Likes
554

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.

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.

4 REPLIES 4
Read only

Former Member
0 Likes
534

Hi,

After modifying the itab with work area.

Call the method : REFRESH_TABLE_DISPLAY.

This will refresh the ALV gird and shows the modified data.

Thanks & Regards,

Siri.

Read only

0 Likes
534

Hi ,

My problem is i am not able to transfer the data from the ALV grid to screen .

CLEAR g_screen200.

MOVE-CORRESPONDING g_wa_sflight TO g_screen200.

LEAVE TO SCREEN '200'.

i got my data in the work area but when executing the above piece of code it should display the record in Screen but it is not doing so.

Regards,

Azee

Read only

Former Member
0 Likes
534

Hi,

Try to use CALL SCREEN 200.

Thanks,

Ruthra

Read only

Former Member
0 Likes
534

Hi All ,

i got my problem solved, Thanx for ur replies

Regards,

Azee