‎2008 May 23 9:57 AM
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.
‎2008 May 23 10:00 AM
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