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

output

Former Member
0 Likes
363

IF rs_selfield-tabname = 'T_FINAL'.

CLEAR wa_final.

READ TABLE t_final INTO wa_final INDEX rs_selfield-tabindex.

IF sy-subrc = 0.

PERFORM f_display_list.

ENDIF.

endif.

1 REPLY 1
Read only

Former Member
0 Likes
321

IF rs_selfield-tabname = 'T_FINAL'. "This is the final internal table name

CLEAR wa_final.

READ TABLE t_final INTO wa_final INDEX rs_selfield-tabindex. "This makes to read the selected record from ALV GRID

IF sy-subrc = 0.

PERFORM f_display_list. "Displays the list

ENDIF.

endif.

After User COmmand in ALV GRID, the program will lead into further operations as mentioned above.

Regards

Kannaiah