ABAP Select data from SAP table EDO_AR_4291_FECOMP_CONSULTA_RE 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 EDO_AR_4291_FECOMP_CONSULTA_RE 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 EDO_AR_4291_FECOMP_CONSULTA_RE. 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 EDO_AR_4291_FECOMP_CONSULTA_RE 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_EDO_AR_4291_FECOMP_CONSULTA_RE TYPE STANDARD TABLE OF EDO_AR_4291_FECOMP_CONSULTA_RE,
      WA_EDO_AR_4291_FECOMP_CONSULTA_RE TYPE EDO_AR_4291_FECOMP_CONSULTA_RE,
      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: <EDO_AR_4291_FECOMP_CONSULTA_RE> TYPE EDO_AR_4291_FECOMP_CONSULTA_RE.

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

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

*Select data and declare internal table using in-line method @DATA
*SELECT *
*  FROM EDO_AR_4291_FECOMP_CONSULTA_RE
*  INTO TABLE @DATA(IT_EDO_AR_4291_FECOMP_CONSULTA_RE2).
*--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_EDO_AR_4291_FECOMP_CONSULTA_RE INDEX 1 INTO DATA(WA_EDO_AR_4291_FECOMP_CONSULTA_RE2).


*Demonstrate how to loop at an internal table and update values using a FIELD-SYMBOL
LOOP AT IT_EDO_AR_4291_FECOMP_CONSULTA_RE ASSIGNING <EDO_AR_4291_FECOMP_CONSULTA_RE>.
*To update a field value using a field symbol simply change the value via the field symbol pointer
<EDO_AR_4291_FECOMP_CONSULTA_RE>-CONTROLLER = 1.
<EDO_AR_4291_FECOMP_CONSULTA_RE>-RESULT_GET = 1.
<EDO_AR_4291_FECOMP_CONSULTA_RE>-CONTROLLER = 1.
<EDO_AR_4291_FECOMP_CONSULTA_RE>-BASE = 1.
<EDO_AR_4291_FECOMP_CONSULTA_RE>-CONTROLLER = 1.
ENDLOOP.

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

*Write selected data to screen/report before conversion.
  WRITE:/ sy-vline,   WA_EDO_AR_4291_FECOMP_CONSULTA_RE-BASE, sy-vline,
WA_EDO_AR_4291_FECOMP_CONSULTA_RE-CONTROLLER, sy-vline,
WA_EDO_AR_4291_FECOMP_CONSULTA_RE-CONCEPTO, sy-vline,
WA_EDO_AR_4291_FECOMP_CONSULTA_RE-DOC_TIPO, sy-vline,
WA_EDO_AR_4291_FECOMP_CONSULTA_RE-DOC_NRO, sy-vline,
WA_EDO_AR_4291_FECOMP_CONSULTA_RE-CBTE_DESDE, sy-vline.
ENDLOOP. *Add any further fields from structure WA_EDO_AR_4291_FECOMP_CONSULTA_RE 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_EDO_AR_4291_FECOMP_CONSULTA_RE 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_EDO_AR_4291_FECOMP_CONSULTA_RE INTO WA_EDO_AR_4291_FECOMP_CONSULTA_RE. *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_EDO_AR_4291_FECOMP_CONSULTA_RE_STR,
CONTROLLER TYPE STRING,
RESULT_GET TYPE STRING,
CONTROLLER TYPE STRING,
BASE TYPE STRING,
CONTROLLER TYPE STRING,
BASE TYPE STRING,
CONTROLLER TYPE STRING,
CONCEPTO TYPE STRING,
DOC_TIPO TYPE STRING,
DOC_NRO TYPE STRING,
CBTE_DESDE TYPE STRING,
CBTE_HASTA TYPE STRING,
CBTE_FCH TYPE STRING,
IMP_TOTAL TYPE STRING,
IMP_TOT_CONC TYPE STRING,
IMP_NETO TYPE STRING,
IMP_OP_EX TYPE STRING,
IMP_TRIB TYPE STRING,
IMP_IVA TYPE STRING,
FCH_SERV_DESDE TYPE STRING,
FCH_SERV_HASTA TYPE STRING,
FCH_VTO_PAGO TYPE STRING,
MON_ID TYPE STRING,
MON_COTIZ TYPE STRING,
CBTES_ASOC TYPE STRING,
CONTROLLER TYPE STRING,
CBTE_ASOC TYPE STRING,
TRIBUTOS TYPE STRING,
CONTROLLER TYPE STRING,
TRIBUTO TYPE STRING,
IVA TYPE STRING,
CONTROLLER TYPE STRING,
ALIC_IVA TYPE STRING,
OPCIONALES TYPE STRING,
CONTROLLER TYPE STRING,
OPCIONAL TYPE STRING,
COMPRADORES TYPE STRING,
CONTROLLER TYPE STRING,
COMPRADOR TYPE STRING,
PERIODO_ASOC TYPE STRING,
CONTROLLER TYPE STRING,
FCH_DESDE TYPE STRING,
FCH_HASTA TYPE STRING,
RESULTADO TYPE STRING,
COD_AUTORIZACION TYPE STRING,
EMISION_TIPO TYPE STRING,
FCH_VTO TYPE STRING,
FCH_PROCESO TYPE STRING,
OBSERVACIONES TYPE STRING,
CONTROLLER TYPE STRING,
OBS TYPE STRING,
PTO_VTA TYPE STRING,
CBTE_TIPO TYPE STRING,
ERRORS TYPE STRING,
CONTROLLER TYPE STRING,
ERR TYPE STRING,
EVENTS TYPE STRING,
CONTROLLER TYPE STRING,
EVT TYPE STRING,END OF T_EKKO_STR. DATA: WA_EDO_AR_4291_FECOMP_CONSULTA_RE_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_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONTROLLER sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-RESULT_GET sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONTROLLER sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-BASE sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONTROLLER sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-BASE sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONTROLLER sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONCEPTO sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-DOC_TIPO sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-DOC_NRO sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CBTE_DESDE sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CBTE_HASTA sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CBTE_FCH sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-IMP_TOTAL sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-IMP_TOT_CONC sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-IMP_NETO sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-IMP_OP_EX sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-IMP_TRIB sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-IMP_IVA sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-FCH_SERV_DESDE sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-FCH_SERV_HASTA sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-FCH_VTO_PAGO sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-MON_ID sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-MON_COTIZ sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CBTES_ASOC sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONTROLLER sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CBTE_ASOC sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-TRIBUTOS sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONTROLLER sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-TRIBUTO sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-IVA sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONTROLLER sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-ALIC_IVA sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-OPCIONALES sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONTROLLER sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-OPCIONAL sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-COMPRADORES sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONTROLLER sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-COMPRADOR sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-PERIODO_ASOC sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONTROLLER sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-FCH_DESDE sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-FCH_HASTA sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-RESULTADO sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-COD_AUTORIZACION sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-EMISION_TIPO sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-FCH_VTO sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-FCH_PROCESO sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-OBSERVACIONES sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONTROLLER sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-OBS sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-PTO_VTA sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CBTE_TIPO sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-ERRORS sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONTROLLER sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-ERR sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-EVENTS sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-CONTROLLER sy-vline
WA_EDO_AR_4291_FECOMP_CONSULTA_RE_STR-EVT sy-vline INTO ld_text SEPARATED BY SPACE. *Add any further fields from structure WA_EKKO_STR you want to CONCATENATE... ENDLOOP. ENDFORM.