Search SAP Tables
Please feel to contact me by emailing webmaster (AT) se80.co.uk directly or posting a message in the comments section below.
*&---------------------------------------------------------------------* *& Output very simple ALV report using CL_SALV_TABLE class *&---------------------------------------------------------------------* REPORT ZALV_SIMPLE. * Select data from database table SFLIGHT SELECT * UP TO 20 ROWS FROM sflight INTO TABLE it_report. * Create an instance of the SALV table object CALL METHOD cl_salv_table=>factory EXPORTING list_display = if_salv_c_bool_sap=>false IMPORTING r_salv_table = salv_table CHANGING t_table = it_report.