Homelab, Linux, JS & ABAP (~˘▾˘)~
 

[ABAP] Fill range table directly from select statement

SELECT @if_fsbp_const_range=>sign_include AS sign,
       @if_fsbp_const_range=>option_equal AS option,
       bukrs                              AS low,
       CAST( @space AS CHAR( 4 ) )        AS high
  FROM t001
  INTO TABLE @DATA(range_of_comp_codes).

cl_demo_output=>display( range_of_comp_codes ).

Got this snippet from George Drakos talk from the ABAPConf 2024. Check his Github.

Leave a Reply

Your email address will not be published. Required fields are marked *