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

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

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

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


*Demonstrate how to loop at an internal table and update values using a FIELD-SYMBOL
LOOP AT IT_/SYCLO/PM_SI_QMIH_STR ASSIGNING </SYCLO/PM_SI_QMIH_STR>.
*To update a field value using a field symbol simply change the value via the field symbol pointer
</SYCLO/PM_SI_QMIH_STR>-IWERK = 1.
</SYCLO/PM_SI_QMIH_STR>-ILOAN = 1.
</SYCLO/PM_SI_QMIH_STR>-ILOAI = 1.
</SYCLO/PM_SI_QMIH_STR>-EQUNR = 1.
</SYCLO/PM_SI_QMIH_STR>-BAUTL = 1.
ENDLOOP.

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

*Write selected data to screen/report before conversion.
  WRITE:/ sy-vline,   WA_/SYCLO/PM_SI_QMIH_STR-EBORT, sy-vline,
WA_/SYCLO/PM_SI_QMIH_STR-MSAUS, sy-vline,
WA_/SYCLO/PM_SI_QMIH_STR-AUSVN, sy-vline,
WA_/SYCLO/PM_SI_QMIH_STR-AUSBS, sy-vline,
WA_/SYCLO/PM_SI_QMIH_STR-AUZTV, sy-vline,
WA_/SYCLO/PM_SI_QMIH_STR-AUZTB, sy-vline.
ENDLOOP. *Add any further fields from structure WA_/SYCLO/PM_SI_QMIH_STR 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_/SYCLO/PM_SI_QMIH_STR 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_/SYCLO/PM_SI_QMIH_STR INTO WA_/SYCLO/PM_SI_QMIH_STR. *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 EQUNR CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = WA_/SYCLO/PM_SI_QMIH_STR-EQUNR IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SYCLO/PM_SI_QMIH_STR-EQUNR.
WRITE:/ 'New Value:', ld_input.

*Conversion exit MATN1, internal->external for field BAUTL CALL FUNCTION 'CONVERSION_EXIT_MATN1_OUTPUT' EXPORTING input = WA_/SYCLO/PM_SI_QMIH_STR-BAUTL IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SYCLO/PM_SI_QMIH_STR-BAUTL.
WRITE:/ 'New Value:', ld_input.

*Conversion exit CUNIT, internal->external for field MAUEH CALL FUNCTION 'CONVERSION_EXIT_CUNIT_OUTPUT' EXPORTING input = WA_/SYCLO/PM_SI_QMIH_STR-MAUEH IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SYCLO/PM_SI_QMIH_STR-MAUEH.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TPLNR, internal->external for field BTPLN CALL FUNCTION 'CONVERSION_EXIT_TPLNR_OUTPUT' EXPORTING input = WA_/SYCLO/PM_SI_QMIH_STR-BTPLN IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SYCLO/PM_SI_QMIH_STR-BTPLN.
WRITE:/ 'New Value:', ld_input.

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

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

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

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

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

*Conversion exit ALPHA, internal->external for field PLNAL CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = WA_/SYCLO/PM_SI_QMIH_STR-PLNAL IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SYCLO/PM_SI_QMIH_STR-PLNAL.
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_/SYCLO/PM_SI_QMIH_STR_STR,
IWERK TYPE STRING,
ILOAN TYPE STRING,
ILOAI TYPE STRING,
EQUNR TYPE STRING,
BAUTL TYPE STRING,
EBORT TYPE STRING,
MSAUS TYPE STRING,
AUSVN TYPE STRING,
AUSBS TYPE STRING,
AUZTV TYPE STRING,
AUZTB TYPE STRING,
AUSZT TYPE STRING,
MAUEH TYPE STRING,
BTPLN TYPE STRING,
BEQUI TYPE STRING,
AUSWK TYPE STRING,
VERFV TYPE STRING,
VERFN TYPE STRING,
VERFM TYPE STRING,
ANLZV TYPE STRING,
ANLZN TYPE STRING,
ANLZE TYPE STRING,
INSPK TYPE STRING,
DATAN TYPE STRING,
INGRP TYPE STRING,
WARPL TYPE STRING,
ABNUM TYPE STRING,
WAPOS TYPE STRING,
KDAUF TYPE STRING,
KDPOS TYPE STRING,
SCREENTY TYPE STRING,
PLNTY TYPE STRING,
PLNNR TYPE STRING,
PLNAL TYPE STRING,
REVNR TYPE STRING,
ZAEHL TYPE STRING,END OF T_EKKO_STR. DATA: WA_/SYCLO/PM_SI_QMIH_STR_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_/SYCLO/PM_SI_QMIH_STR_STR-IWERK sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-ILOAN sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-ILOAI sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-EQUNR sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-BAUTL sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-EBORT sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-MSAUS sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-AUSVN sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-AUSBS sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-AUZTV sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-AUZTB sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-AUSZT sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-MAUEH sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-BTPLN sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-BEQUI sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-AUSWK sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-VERFV sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-VERFN sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-VERFM sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-ANLZV sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-ANLZN sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-ANLZE sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-INSPK sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-DATAN sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-INGRP sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-WARPL sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-ABNUM sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-WAPOS sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-KDAUF sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-KDPOS sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-SCREENTY sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-PLNTY sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-PLNNR sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-PLNAL sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-REVNR sy-vline
WA_/SYCLO/PM_SI_QMIH_STR_STR-ZAEHL sy-vline INTO ld_text SEPARATED BY SPACE. *Add any further fields from structure WA_EKKO_STR you want to CONCATENATE... ENDLOOP. ENDFORM.