ABAP Select data from SAP table RELS_FLURST_OUT 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 RELS_FLURST_OUT 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 RELS_FLURST_OUT. 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 RELS_FLURST_OUT 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_RELS_FLURST_OUT TYPE STANDARD TABLE OF RELS_FLURST_OUT,
      WA_RELS_FLURST_OUT TYPE RELS_FLURST_OUT,
      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: <RELS_FLURST_OUT> TYPE RELS_FLURST_OUT.

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

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

*Select data and declare internal table using in-line method @DATA
*SELECT *
*  FROM RELS_FLURST_OUT
*  INTO TABLE @DATA(IT_RELS_FLURST_OUT2).
*--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_RELS_FLURST_OUT INDEX 1 INTO DATA(WA_RELS_FLURST_OUT2).


*Demonstrate how to loop at an internal table and update values using a FIELD-SYMBOL
LOOP AT IT_RELS_FLURST_OUT ASSIGNING <RELS_FLURST_OUT>.
*To update a field value using a field symbol simply change the value via the field symbol pointer
<RELS_FLURST_OUT>-MANDT = 1.
<RELS_FLURST_OUT>-INTRENO_FL = 1.
<RELS_FLURST_OUT>-LAND1 = 1.
<RELS_FLURST_OUT>-LANDX = 1.
<RELS_FLURST_OUT>-BUNDESLAND = 1.
ENDLOOP.

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

*Write selected data to screen/report before conversion.
  WRITE:/ sy-vline,   WA_RELS_FLURST_OUT-BEZEI, sy-vline,
WA_RELS_FLURST_OUT-GEMARKUNG, sy-vline,
WA_RELS_FLURST_OUT-XGEMARK, sy-vline,
WA_RELS_FLURST_OUT-FLUR, sy-vline,
WA_RELS_FLURST_OUT-FLURSTUECK, sy-vline,
WA_RELS_FLURST_OUT-KREIS, sy-vline.
ENDLOOP. *Add any further fields from structure WA_RELS_FLURST_OUT 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_RELS_FLURST_OUT 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_RELS_FLURST_OUT INTO WA_RELS_FLURST_OUT. *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 FLUR CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = WA_RELS_FLURST_OUT-FLUR IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_RELS_FLURST_OUT-FLUR.
WRITE:/ 'New Value:', ld_input.

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

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

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

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

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

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

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

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

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

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

*Conversion exit SWENR, internal->external for field SWENR CALL FUNCTION 'CONVERSION_EXIT_SWENR_OUTPUT' EXPORTING input = WA_RELS_FLURST_OUT-SWENR IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_RELS_FLURST_OUT-SWENR.
WRITE:/ 'New Value:', ld_input.

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

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

*Conversion exit ALPHA, internal->external for field ANLKL CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = WA_RELS_FLURST_OUT-ANLKL IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_RELS_FLURST_OUT-ANLKL.
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_RELS_FLURST_OUT_STR,
MANDT TYPE STRING,
INTRENO_FL TYPE STRING,
LAND1 TYPE STRING,
LANDX TYPE STRING,
BUNDESLAND TYPE STRING,
BEZEI TYPE STRING,
GEMARKUNG TYPE STRING,
XGEMARK TYPE STRING,
FLUR TYPE STRING,
FLURSTUECK TYPE STRING,
KREIS TYPE STRING,
XKREIS TYPE STRING,
GEMEINDE TYPE STRING,
XGEMEINDE TYPE STRING,
REGBEZIRK TYPE STRING,
XMADMDIST TYPE STRING,
STADTBEZIRK TYPE STRING,
XMCITDIST TYPE STRING,
STADTTEIL TYPE STRING,
XMCITSEC TYPE STRING,
GSBER TYPE STRING,
PARTNR_KATAMT TYPE STRING,
PARTNR_KATAMT_EXT TYPE STRING,
NAME_KATAMT TYPE STRING,
BIEXIST TYPE STRING,
LBEXIST TYPE STRING,
FLAECHE_KAT TYPE STRING,
FEINS_KAT TYPE STRING,
COUNTRY TYPE STRING,
STATE TYPE STRING,
SLIDENUM TYPE STRING,
CLASSIFICATION TYPE STRING,
XMCLASS TYPE STRING,
PARTNR_WEIGE TYPE STRING,
PARTNR_WEIGE_EXT TYPE STRING,
VBUND_WEIGE TYPE STRING,
NAME_WEIGE TYPE STRING,
BRUCHT TYPE STRING,
GESHAND TYPE STRING,
BESITZFLAECHE TYPE STRING,
BESITZFLAECHE_FEINS TYPE STRING,
FLAG_GRUNDB TYPE STRING,
SGBVON TYPE STRING,
XGBVON TYPE STRING,
NBANDNR TYPE STRING,
NBLATTNR TYPE STRING,
SGRBA TYPE STRING,
XLBEZ_GB TYPE STRING,
PARTNR_EIGE TYPE STRING,
PARTNR_EIGE_EXT TYPE STRING,
VBUND_EIGE TYPE STRING,
NAME_EIGE TYPE STRING,
PARTNR_JEIGE TYPE STRING,
PARTNR_JEIGE_EXT TYPE STRING,
VBUND_JEIGE TYPE STRING,
NAME_JEIGE TYPE STRING,
NUTZUNGSART TYPE STRING,
XNUTZUNGSART TYPE STRING,
UNTERNUTZUNGSART TYPE STRING,
XUNUTZUNGSART TYPE STRING,
GRUPPE TYPE STRING,
XGRUPPE TYPE STRING,
BETRIEBSNOTW TYPE STRING,
IEP_NUTZUNGSART TYPE STRING,
IEP_XNUTZUNGSART TYPE STRING,
IEP_UNTERNUTZUNGSART TYPE STRING,
IEP_XUNUTZUNGSART TYPE STRING,
IEP_GRUPPE TYPE STRING,
IEP_XGRUPPE TYPE STRING,
IEP_BETRIEBSNOTW TYPE STRING,
IEP_REALISIERUNG_AB TYPE STRING,
BUKRS_AN TYPE STRING,
SWENR TYPE STRING,
ANL_TEXT TYPE STRING,
ANLN1 TYPE STRING,
ANLN2 TYPE STRING,
ANLKL TYPE STRING,
TXK50 TYPE STRING,
KANSW_HR TYPE STRING,
WAERS_HR TYPE STRING,
KANSW_SB TYPE STRING,
WAERS_SB TYPE STRING,
KANSW_KO TYPE STRING,
WAERS_KO TYPE STRING,
KANSW_S1 TYPE STRING,
WAERS_S1 TYPE STRING,
KANSW_S2 TYPE STRING,
WAERS_S2 TYPE STRING,
FLAECHE_ART TYPE STRING,
XFLAECHE_ART TYPE STRING,END OF T_EKKO_STR. DATA: WA_RELS_FLURST_OUT_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_RELS_FLURST_OUT_STR-MANDT sy-vline
WA_RELS_FLURST_OUT_STR-INTRENO_FL sy-vline
WA_RELS_FLURST_OUT_STR-LAND1 sy-vline
WA_RELS_FLURST_OUT_STR-LANDX sy-vline
WA_RELS_FLURST_OUT_STR-BUNDESLAND sy-vline
WA_RELS_FLURST_OUT_STR-BEZEI sy-vline
WA_RELS_FLURST_OUT_STR-GEMARKUNG sy-vline
WA_RELS_FLURST_OUT_STR-XGEMARK sy-vline
WA_RELS_FLURST_OUT_STR-FLUR sy-vline
WA_RELS_FLURST_OUT_STR-FLURSTUECK sy-vline
WA_RELS_FLURST_OUT_STR-KREIS sy-vline
WA_RELS_FLURST_OUT_STR-XKREIS sy-vline
WA_RELS_FLURST_OUT_STR-GEMEINDE sy-vline
WA_RELS_FLURST_OUT_STR-XGEMEINDE sy-vline
WA_RELS_FLURST_OUT_STR-REGBEZIRK sy-vline
WA_RELS_FLURST_OUT_STR-XMADMDIST sy-vline
WA_RELS_FLURST_OUT_STR-STADTBEZIRK sy-vline
WA_RELS_FLURST_OUT_STR-XMCITDIST sy-vline
WA_RELS_FLURST_OUT_STR-STADTTEIL sy-vline
WA_RELS_FLURST_OUT_STR-XMCITSEC sy-vline
WA_RELS_FLURST_OUT_STR-GSBER sy-vline
WA_RELS_FLURST_OUT_STR-PARTNR_KATAMT sy-vline
WA_RELS_FLURST_OUT_STR-PARTNR_KATAMT_EXT sy-vline
WA_RELS_FLURST_OUT_STR-NAME_KATAMT sy-vline
WA_RELS_FLURST_OUT_STR-BIEXIST sy-vline
WA_RELS_FLURST_OUT_STR-LBEXIST sy-vline
WA_RELS_FLURST_OUT_STR-FLAECHE_KAT sy-vline
WA_RELS_FLURST_OUT_STR-FEINS_KAT sy-vline
WA_RELS_FLURST_OUT_STR-COUNTRY sy-vline
WA_RELS_FLURST_OUT_STR-STATE sy-vline
WA_RELS_FLURST_OUT_STR-SLIDENUM sy-vline
WA_RELS_FLURST_OUT_STR-CLASSIFICATION sy-vline
WA_RELS_FLURST_OUT_STR-XMCLASS sy-vline
WA_RELS_FLURST_OUT_STR-PARTNR_WEIGE sy-vline
WA_RELS_FLURST_OUT_STR-PARTNR_WEIGE_EXT sy-vline
WA_RELS_FLURST_OUT_STR-VBUND_WEIGE sy-vline
WA_RELS_FLURST_OUT_STR-NAME_WEIGE sy-vline
WA_RELS_FLURST_OUT_STR-BRUCHT sy-vline
WA_RELS_FLURST_OUT_STR-GESHAND sy-vline
WA_RELS_FLURST_OUT_STR-BESITZFLAECHE sy-vline
WA_RELS_FLURST_OUT_STR-BESITZFLAECHE_FEINS sy-vline
WA_RELS_FLURST_OUT_STR-FLAG_GRUNDB sy-vline
WA_RELS_FLURST_OUT_STR-SGBVON sy-vline
WA_RELS_FLURST_OUT_STR-XGBVON sy-vline
WA_RELS_FLURST_OUT_STR-NBANDNR sy-vline
WA_RELS_FLURST_OUT_STR-NBLATTNR sy-vline
WA_RELS_FLURST_OUT_STR-SGRBA sy-vline
WA_RELS_FLURST_OUT_STR-XLBEZ_GB sy-vline
WA_RELS_FLURST_OUT_STR-PARTNR_EIGE sy-vline
WA_RELS_FLURST_OUT_STR-PARTNR_EIGE_EXT sy-vline
WA_RELS_FLURST_OUT_STR-VBUND_EIGE sy-vline
WA_RELS_FLURST_OUT_STR-NAME_EIGE sy-vline
WA_RELS_FLURST_OUT_STR-PARTNR_JEIGE sy-vline
WA_RELS_FLURST_OUT_STR-PARTNR_JEIGE_EXT sy-vline
WA_RELS_FLURST_OUT_STR-VBUND_JEIGE sy-vline
WA_RELS_FLURST_OUT_STR-NAME_JEIGE sy-vline
WA_RELS_FLURST_OUT_STR-NUTZUNGSART sy-vline
WA_RELS_FLURST_OUT_STR-XNUTZUNGSART sy-vline
WA_RELS_FLURST_OUT_STR-UNTERNUTZUNGSART sy-vline
WA_RELS_FLURST_OUT_STR-XUNUTZUNGSART sy-vline
WA_RELS_FLURST_OUT_STR-GRUPPE sy-vline
WA_RELS_FLURST_OUT_STR-XGRUPPE sy-vline
WA_RELS_FLURST_OUT_STR-BETRIEBSNOTW sy-vline
WA_RELS_FLURST_OUT_STR-IEP_NUTZUNGSART sy-vline
WA_RELS_FLURST_OUT_STR-IEP_XNUTZUNGSART sy-vline
WA_RELS_FLURST_OUT_STR-IEP_UNTERNUTZUNGSART sy-vline
WA_RELS_FLURST_OUT_STR-IEP_XUNUTZUNGSART sy-vline
WA_RELS_FLURST_OUT_STR-IEP_GRUPPE sy-vline
WA_RELS_FLURST_OUT_STR-IEP_XGRUPPE sy-vline
WA_RELS_FLURST_OUT_STR-IEP_BETRIEBSNOTW sy-vline
WA_RELS_FLURST_OUT_STR-IEP_REALISIERUNG_AB sy-vline
WA_RELS_FLURST_OUT_STR-BUKRS_AN sy-vline
WA_RELS_FLURST_OUT_STR-SWENR sy-vline
WA_RELS_FLURST_OUT_STR-ANL_TEXT sy-vline
WA_RELS_FLURST_OUT_STR-ANLN1 sy-vline
WA_RELS_FLURST_OUT_STR-ANLN2 sy-vline
WA_RELS_FLURST_OUT_STR-ANLKL sy-vline
WA_RELS_FLURST_OUT_STR-TXK50 sy-vline
WA_RELS_FLURST_OUT_STR-KANSW_HR sy-vline
WA_RELS_FLURST_OUT_STR-WAERS_HR sy-vline
WA_RELS_FLURST_OUT_STR-KANSW_SB sy-vline
WA_RELS_FLURST_OUT_STR-WAERS_SB sy-vline
WA_RELS_FLURST_OUT_STR-KANSW_KO sy-vline
WA_RELS_FLURST_OUT_STR-WAERS_KO sy-vline
WA_RELS_FLURST_OUT_STR-KANSW_S1 sy-vline
WA_RELS_FLURST_OUT_STR-WAERS_S1 sy-vline
WA_RELS_FLURST_OUT_STR-KANSW_S2 sy-vline
WA_RELS_FLURST_OUT_STR-WAERS_S2 sy-vline
WA_RELS_FLURST_OUT_STR-FLAECHE_ART sy-vline
WA_RELS_FLURST_OUT_STR-XFLAECHE_ART sy-vline INTO ld_text SEPARATED BY SPACE. *Add any further fields from structure WA_EKKO_STR you want to CONCATENATE... ENDLOOP. ENDFORM.