创建和显示 ALV

此示例使用 cl_salv_table 类描述了最简单的 ALV 创建,没有其他格式选项。TRY ENDTRY 块之后和 alv->display( ) 方法调用之前将包含其他格式化选项。

使用 ABAP 对象创建 ALV 的所有后续示例都将使用此示例作为起点。

DATA: t_spfli       TYPE STANDARD TABLE OF spfli,
      alv           TYPE REF TO cl_salv_table,
      error_message TYPE REF TO cx_salv_msg.

" Fill the internal table with example data
SELECT * FROM spfli INTO TABLE t_spfli.

" Fill ALV object with data from the internal table
TRY.
    cl_salv_table=>factory(
      IMPORTING
        r_salv_table = alv
      CHANGING
        t_table      = t_spfli ).
  CATCH cx_salv_msg INTO error_message.
    " error handling
ENDTRY.

" Use the ALV object's display method to show the ALV on the screen
alv->display( ).