ABAP Select data from SAP table /SCMB/S_TA_FIELDS 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 /SCMB/S_TA_FIELDS 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 /SCMB/S_TA_FIELDS. 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 /SCMB/S_TA_FIELDS 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_/SCMB/S_TA_FIELDS TYPE STANDARD TABLE OF /SCMB/S_TA_FIELDS,
      WA_/SCMB/S_TA_FIELDS TYPE /SCMB/S_TA_FIELDS,
      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: </SCMB/S_TA_FIELDS> TYPE /SCMB/S_TA_FIELDS.

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

SELECT *
*restrict ABAP select to first 10 rows
 UP TO 10 ROWS      
  FROM /SCMB/S_TA_FIELDS
  INTO TABLE IT_/SCMB/S_TA_FIELDS.

*Select data and declare internal table using in-line method @DATA
*SELECT *
*  FROM /SCMB/S_TA_FIELDS
*  INTO TABLE @DATA(IT_/SCMB/S_TA_FIELDS2).
*--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_/SCMB/S_TA_FIELDS INDEX 1 INTO DATA(WA_/SCMB/S_TA_FIELDS2).


*Demonstrate how to loop at an internal table and update values using a FIELD-SYMBOL
LOOP AT IT_/SCMB/S_TA_FIELDS ASSIGNING </SCMB/S_TA_FIELDS>.
*To update a field value using a field symbol simply change the value via the field symbol pointer
</SCMB/S_TA_FIELDS>-TITLE = 1.
</SCMB/S_TA_FIELDS>-GUI_STATUS = 1.
</SCMB/S_TA_FIELDS>-SCENARIO = 1.
</SCMB/S_TA_FIELDS>-TEXT_OIP = 1.
</SCMB/S_TA_FIELDS>-TEXT_ODP1 = 1.
ENDLOOP.

LOOP AT IT_/SCMB/S_TA_FIELDS INTO WA_/SCMB/S_TA_FIELDS.
*Write horizonal line to screen report.
  WRITE:/ sy-uline.

*Write selected data to screen/report before conversion.
  WRITE:/ sy-vline,   WA_/SCMB/S_TA_FIELDS-TEXT_ODP2, sy-vline,
WA_/SCMB/S_TA_FIELDS-TAB_OIP_1, sy-vline,
WA_/SCMB/S_TA_FIELDS-TAB_OIP_2, sy-vline,
WA_/SCMB/S_TA_FIELDS-TAB_OIP_3, sy-vline,
WA_/SCMB/S_TA_FIELDS-TAB_OIP_4, sy-vline,
WA_/SCMB/S_TA_FIELDS-TAB_ODP1_1, sy-vline.
ENDLOOP. *Add any further fields from structure WA_/SCMB/S_TA_FIELDS 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_/SCMB/S_TA_FIELDS 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_/SCMB/S_TA_FIELDS INTO WA_/SCMB/S_TA_FIELDS. *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.
ENDFORM. *&---------------------------------------------------------------------* *& Form process_as_string_field_values *&---------------------------------------------------------------------* FORM process_as_string_field_values CHANGING p_EKKO LIKE wa_EKKO. TYPES: BEGIN OF T_/SCMB/S_TA_FIELDS_STR,
TITLE TYPE STRING,
GUI_STATUS TYPE STRING,
SCENARIO TYPE STRING,
TEXT_OIP TYPE STRING,
TEXT_ODP1 TYPE STRING,
TEXT_ODP2 TYPE STRING,
TAB_OIP_1 TYPE STRING,
TAB_OIP_2 TYPE STRING,
TAB_OIP_3 TYPE STRING,
TAB_OIP_4 TYPE STRING,
TAB_ODP1_1 TYPE STRING,
TAB_ODP1_2 TYPE STRING,
TAB_ODP1_3 TYPE STRING,
TAB_ODP1_4 TYPE STRING,
TAB_ODP1_5 TYPE STRING,
TAB_ODP1_6 TYPE STRING,
TAB_ODP1_7 TYPE STRING,
TAB_ODP1_8 TYPE STRING,
TAB_ODP1_9 TYPE STRING,
TAB_ODP1_10 TYPE STRING,
TAB_ODP1_11 TYPE STRING,
TAB_ODP1_12 TYPE STRING,
TAB_ODP1_13 TYPE STRING,
TAB_ODP1_14 TYPE STRING,
TAB_ODP1_15 TYPE STRING,
TAB_ODP1_16 TYPE STRING,
TAB_ODP1_17 TYPE STRING,
TAB_ODP1_18 TYPE STRING,
TAB_ODP1_19 TYPE STRING,
TAB_ODP1_20 TYPE STRING,
TAB_ODP2_1 TYPE STRING,
TAB_ODP2_2 TYPE STRING,
TAB_ODP2_3 TYPE STRING,
TAB_ODP2_4 TYPE STRING,
TAB_ODP2_5 TYPE STRING,
TAB_ODP2_6 TYPE STRING,
TAB_ODP2_7 TYPE STRING,
TAB_ODP2_8 TYPE STRING,
TAB_ODP2_9 TYPE STRING,
TAB_ODP2_10 TYPE STRING,
TAB_ODP2_11 TYPE STRING,
TAB_ODP2_12 TYPE STRING,
TAB_ODP2_13 TYPE STRING,
TAB_ODP2_14 TYPE STRING,
TAB_ODP2_15 TYPE STRING,
TAB_ODP2_16 TYPE STRING,
TAB_ODP2_17 TYPE STRING,
TAB_ODP2_18 TYPE STRING,
TAB_ODP2_19 TYPE STRING,
TAB_ODP2_20 TYPE STRING,
NUMERATOR_OIP TYPE STRING,
NUMERATOR_ODP1 TYPE STRING,
NUMERATOR_ODP2 TYPE STRING,
DENOMINATOR_OIP TYPE STRING,
DENOMINATOR_ODP1 TYPE STRING,
DENOMINATOR_ODP2 TYPE STRING,
ADV_SCREEN_1 TYPE STRING,
ADV_SCREEN_2 TYPE STRING,
ADV_SCREEN_3 TYPE STRING,END OF T_EKKO_STR. DATA: WA_/SCMB/S_TA_FIELDS_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_/SCMB/S_TA_FIELDS_STR-TITLE sy-vline
WA_/SCMB/S_TA_FIELDS_STR-GUI_STATUS sy-vline
WA_/SCMB/S_TA_FIELDS_STR-SCENARIO sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TEXT_OIP sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TEXT_ODP1 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TEXT_ODP2 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_OIP_1 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_OIP_2 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_OIP_3 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_OIP_4 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_1 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_2 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_3 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_4 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_5 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_6 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_7 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_8 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_9 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_10 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_11 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_12 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_13 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_14 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_15 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_16 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_17 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_18 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_19 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP1_20 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_1 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_2 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_3 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_4 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_5 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_6 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_7 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_8 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_9 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_10 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_11 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_12 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_13 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_14 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_15 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_16 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_17 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_18 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_19 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-TAB_ODP2_20 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-NUMERATOR_OIP sy-vline
WA_/SCMB/S_TA_FIELDS_STR-NUMERATOR_ODP1 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-NUMERATOR_ODP2 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-DENOMINATOR_OIP sy-vline
WA_/SCMB/S_TA_FIELDS_STR-DENOMINATOR_ODP1 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-DENOMINATOR_ODP2 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-ADV_SCREEN_1 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-ADV_SCREEN_2 sy-vline
WA_/SCMB/S_TA_FIELDS_STR-ADV_SCREEN_3 sy-vline INTO ld_text SEPARATED BY SPACE. *Add any further fields from structure WA_EKKO_STR you want to CONCATENATE... ENDLOOP. ENDFORM.