ABAP Select data from SAP table TBCO_LC_DOCUMENT 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 TBCO_LC_DOCUMENT 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 TBCO_LC_DOCUMENT. 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 TBCO_LC_DOCUMENT 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_TBCO_LC_DOCUMENT TYPE STANDARD TABLE OF TBCO_LC_DOCUMENT,
      WA_TBCO_LC_DOCUMENT TYPE TBCO_LC_DOCUMENT,
      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: <TBCO_LC_DOCUMENT> TYPE TBCO_LC_DOCUMENT.

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

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

*Select data and declare internal table using in-line method @DATA
*SELECT *
*  FROM TBCO_LC_DOCUMENT
*  INTO TABLE @DATA(IT_TBCO_LC_DOCUMENT2).
*--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_TBCO_LC_DOCUMENT INDEX 1 INTO DATA(WA_TBCO_LC_DOCUMENT2).


*Demonstrate how to loop at an internal table and update values using a FIELD-SYMBOL
LOOP AT IT_TBCO_LC_DOCUMENT ASSIGNING <TBCO_LC_DOCUMENT>.
*To update a field value using a field symbol simply change the value via the field symbol pointer
<TBCO_LC_DOCUMENT>-PRESENT_ID = 1.
<TBCO_LC_DOCUMENT>-LC_DOC_NUMBER = 1.
<TBCO_LC_DOCUMENT>-NUMBER_ORIGINALS = 1.
<TBCO_LC_DOCUMENT>-NUMBER_COPIES = 1.
<TBCO_LC_DOCUMENT>-DOC_COMPLETED = 1.
ENDLOOP.

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

*Write selected data to screen/report before conversion.
  WRITE:/ sy-vline,   WA_TBCO_LC_DOCUMENT-CREATION, sy-vline,
WA_TBCO_LC_DOCUMENT-PRESENTATION, sy-vline,
WA_TBCO_LC_DOCUMENT-DOC_TYPE, sy-vline,
WA_TBCO_LC_DOCUMENT-DOC_TYPE_DESC, sy-vline,
WA_TBCO_LC_DOCUMENT-COMMENTS, sy-vline,
WA_TBCO_LC_DOCUMENT-DOC_COMP_TXT, sy-vline.
ENDLOOP. *Add any further fields from structure WA_TBCO_LC_DOCUMENT 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_TBCO_LC_DOCUMENT 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_TBCO_LC_DOCUMENT INTO WA_TBCO_LC_DOCUMENT. *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_TBCO_LC_DOCUMENT_STR,
PRESENT_ID TYPE STRING,
LC_DOC_NUMBER TYPE STRING,
NUMBER_ORIGINALS TYPE STRING,
NUMBER_COPIES TYPE STRING,
DOC_COMPLETED TYPE STRING,
CREATION TYPE STRING,
PRESENTATION TYPE STRING,
DOC_TYPE TYPE STRING,
DOC_TYPE_DESC TYPE STRING,
COMMENTS TYPE STRING,
DOC_COMP_TXT TYPE STRING,END OF T_EKKO_STR. DATA: WA_TBCO_LC_DOCUMENT_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_TBCO_LC_DOCUMENT_STR-PRESENT_ID sy-vline
WA_TBCO_LC_DOCUMENT_STR-LC_DOC_NUMBER sy-vline
WA_TBCO_LC_DOCUMENT_STR-NUMBER_ORIGINALS sy-vline
WA_TBCO_LC_DOCUMENT_STR-NUMBER_COPIES sy-vline
WA_TBCO_LC_DOCUMENT_STR-DOC_COMPLETED sy-vline
WA_TBCO_LC_DOCUMENT_STR-CREATION sy-vline
WA_TBCO_LC_DOCUMENT_STR-PRESENTATION sy-vline
WA_TBCO_LC_DOCUMENT_STR-DOC_TYPE sy-vline
WA_TBCO_LC_DOCUMENT_STR-DOC_TYPE_DESC sy-vline
WA_TBCO_LC_DOCUMENT_STR-COMMENTS sy-vline
WA_TBCO_LC_DOCUMENT_STR-DOC_COMP_TXT sy-vline INTO ld_text SEPARATED BY SPACE. *Add any further fields from structure WA_EKKO_STR you want to CONCATENATE... ENDLOOP. ENDFORM.