[ABAP] SALV IDA: CDS-View anzeigen

* vorhandene CDS Views im System: SE16 -> Tabelle TADIR, Objekttyp 'STOB'
TRY.
* CDS View 'DEMO_CDS_SPFLI' anzeigen
    cl_salv_gui_table_ida=>create_for_cds_view( CONV #( 'DEMO_CDS_SPFLI' ) )->fullscreen( )->display( ).
  CATCH cx_root INTO DATA(e_txt).
    WRITE: / e_txt->get_text( ).
ENDTRY.