ABAP Select data from SAP table SIBROSTMCF_DISPL into internal table

Get Example source ABAP code based on a different SAP table
  

Below is a number of ABAP code snippets to demonstrate how to select data from SAP SIBROSTMCF_DISPL table and store it within an internal table, including using the newer @DATA inline declaration methods. It also shows you various ways to process this data using ABAP work area, inline declaration or field symbols including executing all the relevant CONVERSION_EXIT routines specific to SIBROSTMCF_DISPL. See here for more generic Select statement tips.

Sometimes data within SAP is stored within the database table in a different format to what it is displayed to the user. These input/output conversation FM routines are what translates the data between the two formats.

There is also a full declaration of the SIBROSTMCF_DISPL table where each field has a char/string type for you to simply copy and paste. This allows you to use processing that is only available to these field types such as the CONCATENATE statement.

DATA: IT_SIBROSTMCF_DISPL TYPE STANDARD TABLE OF SIBROSTMCF_DISPL,
      WA_SIBROSTMCF_DISPL TYPE SIBROSTMCF_DISPL,
      GD_STR TYPE STRING.

DATA: lo_typedescr type REF TO cl_abap_typedescr.
DATA: lv_fieldname type fieldname.

FIELD-SYMBOLS: <FIELD> TYPE any.
FIELD-SYMBOLS: <SIBROSTMCF_DISPL> TYPE SIBROSTMCF_DISPL.

*Process all fields in table header/work area as string values
  PERFORM process_as_string_field_values CHANGING wa_SIBROSTMCF_DISPL.

SELECT *
*restrict ABAP select to first 10 rows
 UP TO 10 ROWS      
  FROM SIBROSTMCF_DISPL
  INTO TABLE IT_SIBROSTMCF_DISPL.

*Select data and declare internal table using in-line method @DATA
*SELECT *
*  FROM SIBROSTMCF_DISPL
*  INTO TABLE @DATA(IT_SIBROSTMCF_DISPL2).
*--Further methods of using ABAP code to  select data from SAP database tables

*You can also declare the header/work area using the in-line DATA declaration method
READ TABLE IT_SIBROSTMCF_DISPL INDEX 1 INTO DATA(WA_SIBROSTMCF_DISPL2).


*Demonstrate how to loop at an internal table and update values using a FIELD-SYMBOL
LOOP AT IT_SIBROSTMCF_DISPL ASSIGNING <SIBROSTMCF_DISPL>.
*To update a field value using a field symbol simply change the value via the field symbol pointer
<SIBROSTMCF_DISPL>-MARK = 1.
<SIBROSTMCF_DISPL>-ICON = 1.
<SIBROSTMCF_DISPL>-WORKICON = 1.
<SIBROSTMCF_DISPL>-STATE_TXT = 1.
<SIBROSTMCF_DISPL>-WORKSTATE_TXT = 1.
ENDLOOP.

LOOP AT IT_SIBROSTMCF_DISPL INTO WA_SIBROSTMCF_DISPL.
*Write horizonal line to screen report.
  WRITE:/ sy-uline.

*Write selected data to screen/report before conversion.
  WRITE:/ sy-vline,   WA_SIBROSTMCF_DISPL-ACTION_TXT, sy-vline,
WA_SIBROSTMCF_DISPL-TILE_ID_TXT, sy-vline,
WA_SIBROSTMCF_DISPL-GPART_TXT, sy-vline,
WA_SIBROSTMCF_DISPL-USER_TXT, sy-vline,
WA_SIBROSTMCF_DISPL-CLIENT, sy-vline,
WA_SIBROSTMCF_DISPL-IDENT, sy-vline.
ENDLOOP. *Add any further fields from structure WA_SIBROSTMCF_DISPL you want to display... WRITE:/ sy-uline. * Aternatively use generic code to Write field values (and NAME) to screen report DO. ASSIGN COMPONENT sy-index OF STRUCTURE wa_SIBROSTMCF_DISPL TO <field>. IF sy-subrc <> 0. EXIT. ENDIF. WRITE:/ 'Field Value', <field>, sy-vline. gd_str = <field> . lo_typedescr ?= CL_ABAP_DATADESCR=>DESCRIBE_BY_DATA( <field> ). lv_fieldname = lo_typedescr->GET_RELATIVE_NAME( ). WRITE:/ 'Field Name', lv_fieldname. ENDDO. *Redo loop but convert all fields from internal to out value LOOP AT IT_SIBROSTMCF_DISPL INTO WA_SIBROSTMCF_DISPL. *Write horizonal line to screen report. WRITE:/ sy-uline. *Convert all fields to display/output versions using conversion routines PERFORM convert_all_field_values CHANGING wa_EKKO. ENDLOOP. *&---------------------------------------------------------------------* *& Form convert_all_field_values *&---------------------------------------------------------------------* FORM convert_all_field_values CHANGING p_EKKO LIKE wa_EKKO. DATA: ld_input(1000) TYPE c, ld_output(1000) TYPE C.

*Conversion exit ALPHA, internal->external for field BROKER CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = WA_SIBROSTMCF_DISPL-BROKER IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_SIBROSTMCF_DISPL-BROKER.
WRITE:/ 'New Value:', ld_input.

*Conversion exit ALPHA, internal->external for field BROOBJ CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = WA_SIBROSTMCF_DISPL-BROOBJ IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_SIBROSTMCF_DISPL-BROOBJ.
WRITE:/ 'New Value:', ld_input.

*Conversion exit ALPHA, internal->external for field PARTNER CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = WA_SIBROSTMCF_DISPL-PARTNER IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_SIBROSTMCF_DISPL-PARTNER.
WRITE:/ 'New Value:', ld_input.

*Conversion exit ALPHA, internal->external for field INSOBJECT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = WA_SIBROSTMCF_DISPL-INSOBJECT IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_SIBROSTMCF_DISPL-INSOBJECT.
WRITE:/ 'New Value:', ld_input.

*Conversion exit ALPHA, internal->external for field ACCOUNT CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = WA_SIBROSTMCF_DISPL-ACCOUNT IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_SIBROSTMCF_DISPL-ACCOUNT.
WRITE:/ 'New Value:', ld_input.
ENDFORM. *&---------------------------------------------------------------------* *& Form process_as_string_field_values *&---------------------------------------------------------------------* FORM process_as_string_field_values CHANGING p_EKKO LIKE wa_EKKO. TYPES: BEGIN OF T_SIBROSTMCF_DISPL_STR,
MARK TYPE STRING,
ICON TYPE STRING,
WORKICON TYPE STRING,
STATE_TXT TYPE STRING,
WORKSTATE_TXT TYPE STRING,
ACTION_TXT TYPE STRING,
TILE_ID_TXT TYPE STRING,
GPART_TXT TYPE STRING,
USER_TXT TYPE STRING,
CLIENT TYPE STRING,
IDENT TYPE STRING,
POSNUMB TYPE STRING,
POSCAT TYPE STRING,
BROKER TYPE STRING,
BROOBJ TYPE STRING,
PARTNER TYPE STRING,
INSOBJECT TYPE STRING,
ACCOUNT TYPE STRING,
CURR TYPE STRING,
AMNTTR TYPE STRING,
CLARREAS TYPE STRING,
CLARAMNTTR TYPE STRING,
COMMAMNTTR TYPE STRING,
COMPCODE TYPE STRING,
BUISAREA TYPE STRING,
POSTDATE TYPE STRING,
INFOFLD TYPE STRING,
PROCINFO TYPE STRING,
SELT1 TYPE STRING,
SELV1 TYPE STRING,
SELT2 TYPE STRING,
SELV2 TYPE STRING,
SELT3 TYPE STRING,
SELV3 TYPE STRING,
SELT4 TYPE STRING,
SELV4 TYPE STRING,
SELT5 TYPE STRING,
SELV5 TYPE STRING,
STATE TYPE STRING,
LOCK_USER TYPE STRING,
LOCK_LIMIT TYPE STRING,
WORKSTATE TYPE STRING,
RESUBMIT_DATE TYPE STRING,
WF_COUNT TYPE STRING,
AMNTPROPTR TYPE STRING,END OF T_EKKO_STR. DATA: WA_SIBROSTMCF_DISPL_STR type T_EKKO_STR. DATA: ld_text TYPE string. LOOP AT IT_EKKO INTO WA_EKKO. MOVE-CORRESPONDING wa_EKKO TO WA_EKKO_STR. CONCATENATE: sy-vline
WA_SIBROSTMCF_DISPL_STR-MARK sy-vline
WA_SIBROSTMCF_DISPL_STR-ICON sy-vline
WA_SIBROSTMCF_DISPL_STR-WORKICON sy-vline
WA_SIBROSTMCF_DISPL_STR-STATE_TXT sy-vline
WA_SIBROSTMCF_DISPL_STR-WORKSTATE_TXT sy-vline
WA_SIBROSTMCF_DISPL_STR-ACTION_TXT sy-vline
WA_SIBROSTMCF_DISPL_STR-TILE_ID_TXT sy-vline
WA_SIBROSTMCF_DISPL_STR-GPART_TXT sy-vline
WA_SIBROSTMCF_DISPL_STR-USER_TXT sy-vline
WA_SIBROSTMCF_DISPL_STR-CLIENT sy-vline
WA_SIBROSTMCF_DISPL_STR-IDENT sy-vline
WA_SIBROSTMCF_DISPL_STR-POSNUMB sy-vline
WA_SIBROSTMCF_DISPL_STR-POSCAT sy-vline
WA_SIBROSTMCF_DISPL_STR-BROKER sy-vline
WA_SIBROSTMCF_DISPL_STR-BROOBJ sy-vline
WA_SIBROSTMCF_DISPL_STR-PARTNER sy-vline
WA_SIBROSTMCF_DISPL_STR-INSOBJECT sy-vline
WA_SIBROSTMCF_DISPL_STR-ACCOUNT sy-vline
WA_SIBROSTMCF_DISPL_STR-CURR sy-vline
WA_SIBROSTMCF_DISPL_STR-AMNTTR sy-vline
WA_SIBROSTMCF_DISPL_STR-CLARREAS sy-vline
WA_SIBROSTMCF_DISPL_STR-CLARAMNTTR sy-vline
WA_SIBROSTMCF_DISPL_STR-COMMAMNTTR sy-vline
WA_SIBROSTMCF_DISPL_STR-COMPCODE sy-vline
WA_SIBROSTMCF_DISPL_STR-BUISAREA sy-vline
WA_SIBROSTMCF_DISPL_STR-POSTDATE sy-vline
WA_SIBROSTMCF_DISPL_STR-INFOFLD sy-vline
WA_SIBROSTMCF_DISPL_STR-PROCINFO sy-vline
WA_SIBROSTMCF_DISPL_STR-SELT1 sy-vline
WA_SIBROSTMCF_DISPL_STR-SELV1 sy-vline
WA_SIBROSTMCF_DISPL_STR-SELT2 sy-vline
WA_SIBROSTMCF_DISPL_STR-SELV2 sy-vline
WA_SIBROSTMCF_DISPL_STR-SELT3 sy-vline
WA_SIBROSTMCF_DISPL_STR-SELV3 sy-vline
WA_SIBROSTMCF_DISPL_STR-SELT4 sy-vline
WA_SIBROSTMCF_DISPL_STR-SELV4 sy-vline
WA_SIBROSTMCF_DISPL_STR-SELT5 sy-vline
WA_SIBROSTMCF_DISPL_STR-SELV5 sy-vline
WA_SIBROSTMCF_DISPL_STR-STATE sy-vline
WA_SIBROSTMCF_DISPL_STR-LOCK_USER sy-vline
WA_SIBROSTMCF_DISPL_STR-LOCK_LIMIT sy-vline
WA_SIBROSTMCF_DISPL_STR-WORKSTATE sy-vline
WA_SIBROSTMCF_DISPL_STR-RESUBMIT_DATE sy-vline
WA_SIBROSTMCF_DISPL_STR-WF_COUNT sy-vline
WA_SIBROSTMCF_DISPL_STR-AMNTPROPTR sy-vline INTO ld_text SEPARATED BY SPACE. *Add any further fields from structure WA_EKKO_STR you want to CONCATENATE... ENDLOOP. ENDFORM.