ABAP Select data from SAP table RN2CLIM_VAL_STORNO 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 RN2CLIM_VAL_STORNO 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 RN2CLIM_VAL_STORNO. 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 RN2CLIM_VAL_STORNO 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_RN2CLIM_VAL_STORNO TYPE STANDARD TABLE OF RN2CLIM_VAL_STORNO, WA_RN2CLIM_VAL_STORNO TYPE RN2CLIM_VAL_STORNO, 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: <RN2CLIM_VAL_STORNO> TYPE RN2CLIM_VAL_STORNO. *Process all fields in table header/work area as string values PERFORM process_as_string_field_values CHANGING wa_RN2CLIM_VAL_STORNO. SELECT * *restrict ABAP select to first 10 rows UP TO 10 ROWS FROM RN2CLIM_VAL_STORNO INTO TABLE IT_RN2CLIM_VAL_STORNO. *Select data and declare internal table using in-line method @DATA *SELECT * * FROM RN2CLIM_VAL_STORNO * INTO TABLE @DATA(IT_RN2CLIM_VAL_STORNO2). *--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_RN2CLIM_VAL_STORNO INDEX 1 INTO DATA(WA_RN2CLIM_VAL_STORNO2). *Demonstrate how to loop at an internal table and update values using a FIELD-SYMBOL LOOP AT IT_RN2CLIM_VAL_STORNO ASSIGNING <RN2CLIM_VAL_STORNO>.*To update a field value using a field symbol simply change the value via the field symbol pointer
<RN2CLIM_VAL_STORNO>-MARK = 1.
<RN2CLIM_VAL_STORNO>-VALID = 1.
<RN2CLIM_VAL_STORNO>-VALID_VERS = 1.
<RN2CLIM_VAL_STORNO>-OBSID = 1.
<RN2CLIM_VAL_STORNO>-OBSID_VERS = 1.
ENDLOOP. LOOP AT IT_RN2CLIM_VAL_STORNO INTO WA_RN2CLIM_VAL_STORNO. *Write horizonal line to screen report. WRITE:/ sy-uline. *Write selected data to screen/report before conversion. WRITE:/ sy-vline, WA_RN2CLIM_VAL_STORNO-MTYPE, sy-vline,
WA_RN2CLIM_VAL_STORNO-STATUS, sy-vline,
WA_RN2CLIM_VAL_STORNO-BCHID, sy-vline,
WA_RN2CLIM_VAL_STORNO-BCPID, sy-vline,
WA_RN2CLIM_VAL_STORNO-VALTIMESTAMP, sy-vline,
WA_RN2CLIM_VAL_STORNO-VALTIMESTAMP_TO, sy-vline.
ENDLOOP. *Add any further fields from structure WA_RN2CLIM_VAL_STORNO 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_RN2CLIM_VAL_STORNO 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_RN2CLIM_VAL_STORNO INTO WA_RN2CLIM_VAL_STORNO. *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_RN2CLIM_VAL_STORNO_STR,
MARK TYPE STRING,
VALID TYPE STRING,
VALID_VERS TYPE STRING,
OBSID TYPE STRING,
OBSID_VERS TYPE STRING,
MTYPE TYPE STRING,
STATUS TYPE STRING,
BCHID TYPE STRING,
BCPID TYPE STRING,
VALTIMESTAMP TYPE STRING,
VALTIMESTAMP_TO TYPE STRING,
DESCR TYPE STRING,
LGTXT TYPE STRING,
VALUE TYPE STRING,
UNIT TYPE STRING,
VALUE_STRING TYPE STRING,
VALUE_ZERO TYPE STRING,
VALQUAL TYPE STRING,
ABNORM TYPE STRING,
ORIGIN TYPE STRING,
CODE_ORIG TYPE STRING,
CODETEXT_ORIG TYPE STRING,
UNIT_ORIG TYPE STRING,
VALUE_ORIG TYPE STRING,
NORMAL_ORIG TYPE STRING,
ABNORM_ORIG TYPE STRING,
PLDTIMESTAMP TYPE STRING,
PLDID TYPE STRING,
ERDAT TYPE STRING,
ERTIM TYPE STRING,
ERUSR TYPE STRING,
UPDAT TYPE STRING,
UPTIM TYPE STRING,
UPUSR TYPE STRING,
STORN TYPE STRING,
STOID TYPE STRING,
STDAT TYPE STRING,
STTIM TYPE STRING,
STUSR TYPE STRING,
REASON_NMEA TYPE STRING,
NORMAL_LOW TYPE STRING,
NORMAL_HIGH TYPE STRING,
IDX TYPE STRING,END OF T_EKKO_STR. DATA: WA_RN2CLIM_VAL_STORNO_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_RN2CLIM_VAL_STORNO_STR-MARK sy-vline
WA_RN2CLIM_VAL_STORNO_STR-VALID sy-vline
WA_RN2CLIM_VAL_STORNO_STR-VALID_VERS sy-vline
WA_RN2CLIM_VAL_STORNO_STR-OBSID sy-vline
WA_RN2CLIM_VAL_STORNO_STR-OBSID_VERS sy-vline
WA_RN2CLIM_VAL_STORNO_STR-MTYPE sy-vline
WA_RN2CLIM_VAL_STORNO_STR-STATUS sy-vline
WA_RN2CLIM_VAL_STORNO_STR-BCHID sy-vline
WA_RN2CLIM_VAL_STORNO_STR-BCPID sy-vline
WA_RN2CLIM_VAL_STORNO_STR-VALTIMESTAMP sy-vline
WA_RN2CLIM_VAL_STORNO_STR-VALTIMESTAMP_TO sy-vline
WA_RN2CLIM_VAL_STORNO_STR-DESCR sy-vline
WA_RN2CLIM_VAL_STORNO_STR-LGTXT sy-vline
WA_RN2CLIM_VAL_STORNO_STR-VALUE sy-vline
WA_RN2CLIM_VAL_STORNO_STR-UNIT sy-vline
WA_RN2CLIM_VAL_STORNO_STR-VALUE_STRING sy-vline
WA_RN2CLIM_VAL_STORNO_STR-VALUE_ZERO sy-vline
WA_RN2CLIM_VAL_STORNO_STR-VALQUAL sy-vline
WA_RN2CLIM_VAL_STORNO_STR-ABNORM sy-vline
WA_RN2CLIM_VAL_STORNO_STR-ORIGIN sy-vline
WA_RN2CLIM_VAL_STORNO_STR-CODE_ORIG sy-vline
WA_RN2CLIM_VAL_STORNO_STR-CODETEXT_ORIG sy-vline
WA_RN2CLIM_VAL_STORNO_STR-UNIT_ORIG sy-vline
WA_RN2CLIM_VAL_STORNO_STR-VALUE_ORIG sy-vline
WA_RN2CLIM_VAL_STORNO_STR-NORMAL_ORIG sy-vline
WA_RN2CLIM_VAL_STORNO_STR-ABNORM_ORIG sy-vline
WA_RN2CLIM_VAL_STORNO_STR-PLDTIMESTAMP sy-vline
WA_RN2CLIM_VAL_STORNO_STR-PLDID sy-vline
WA_RN2CLIM_VAL_STORNO_STR-ERDAT sy-vline
WA_RN2CLIM_VAL_STORNO_STR-ERTIM sy-vline
WA_RN2CLIM_VAL_STORNO_STR-ERUSR sy-vline
WA_RN2CLIM_VAL_STORNO_STR-UPDAT sy-vline
WA_RN2CLIM_VAL_STORNO_STR-UPTIM sy-vline
WA_RN2CLIM_VAL_STORNO_STR-UPUSR sy-vline
WA_RN2CLIM_VAL_STORNO_STR-STORN sy-vline
WA_RN2CLIM_VAL_STORNO_STR-STOID sy-vline
WA_RN2CLIM_VAL_STORNO_STR-STDAT sy-vline
WA_RN2CLIM_VAL_STORNO_STR-STTIM sy-vline
WA_RN2CLIM_VAL_STORNO_STR-STUSR sy-vline
WA_RN2CLIM_VAL_STORNO_STR-REASON_NMEA sy-vline
WA_RN2CLIM_VAL_STORNO_STR-NORMAL_LOW sy-vline
WA_RN2CLIM_VAL_STORNO_STR-NORMAL_HIGH sy-vline
WA_RN2CLIM_VAL_STORNO_STR-IDX sy-vline INTO ld_text SEPARATED BY SPACE. *Add any further fields from structure WA_EKKO_STR you want to CONCATENATE... ENDLOOP. ENDFORM.