SAP Table type structure for select-option

Advertisements

If you want to use or pass selection options into your SAP function modules you can use table type RSELOPTION which has the line type of RSDSSELOPT.

Advertisements

select-option

 

This field can then be used directly as a select option for selecting data from a table. See example below of how the ABAP code will look within a function module.

*"  IMPORTING
*"     REFERENCE(I_EBELN) TYPE  RSELOPTION OPTIONAL

data: it_ekko type standard table of ekko
      wa_ekko like line of it_ekko.

select *
  from ekko
  into table it_ekko
 where ebeln in i_ebeln

Also see table type BAPI_RE_T_SELOPTION if you want to pass multiple select-option fields using the same parameter.

Advertisements

select-option2

Advertisements

Leave a Comment: