ABAP Select data from SAP table PS0025 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 PS0025 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 PS0025. 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 PS0025 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_PS0025 TYPE STANDARD TABLE OF PS0025,
      WA_PS0025 TYPE PS0025,
      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: <PS0025> TYPE PS0025.

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

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

*Select data and declare internal table using in-line method @DATA
*SELECT *
*  FROM PS0025
*  INTO TABLE @DATA(IT_PS00252).
*--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_PS0025 INDEX 1 INTO DATA(WA_PS00252).


*Demonstrate how to loop at an internal table and update values using a FIELD-SYMBOL
LOOP AT IT_PS0025 ASSIGNING <PS0025>.
*To update a field value using a field symbol simply change the value via the field symbol pointer
<PS0025>-BWNAM = 1.
<PS0025>-DAT25 = 1.
<PS0025>-LWKJN = 1.
<PS0025>-KENJN = 1.
<PS0025>-GRPNR = 1.
ENDLOOP.

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

*Write selected data to screen/report before conversion.
  WRITE:/ sy-vline,   WA_PS0025-KRT01, sy-vline,
WA_PS0025-PKT01, sy-vline,
WA_PS0025-KSU01, sy-vline,
WA_PS0025-KRT02, sy-vline,
WA_PS0025-PKT02, sy-vline,
WA_PS0025-KSU02, sy-vline.
ENDLOOP. *Add any further fields from structure WA_PS0025 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_PS0025 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_PS0025 INTO WA_PS0025. *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_PS0025_STR,
BWNAM TYPE STRING,
DAT25 TYPE STRING,
LWKJN TYPE STRING,
KENJN TYPE STRING,
GRPNR TYPE STRING,
KRT01 TYPE STRING,
PKT01 TYPE STRING,
KSU01 TYPE STRING,
KRT02 TYPE STRING,
PKT02 TYPE STRING,
KSU02 TYPE STRING,
KRT03 TYPE STRING,
PKT03 TYPE STRING,
KSU03 TYPE STRING,
KRT04 TYPE STRING,
PKT04 TYPE STRING,
KSU04 TYPE STRING,
KRT05 TYPE STRING,
PKT05 TYPE STRING,
KSU05 TYPE STRING,
KRT06 TYPE STRING,
PKT06 TYPE STRING,
KSU06 TYPE STRING,END OF T_EKKO_STR. DATA: WA_PS0025_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_PS0025_STR-BWNAM sy-vline
WA_PS0025_STR-DAT25 sy-vline
WA_PS0025_STR-LWKJN sy-vline
WA_PS0025_STR-KENJN sy-vline
WA_PS0025_STR-GRPNR sy-vline
WA_PS0025_STR-KRT01 sy-vline
WA_PS0025_STR-PKT01 sy-vline
WA_PS0025_STR-KSU01 sy-vline
WA_PS0025_STR-KRT02 sy-vline
WA_PS0025_STR-PKT02 sy-vline
WA_PS0025_STR-KSU02 sy-vline
WA_PS0025_STR-KRT03 sy-vline
WA_PS0025_STR-PKT03 sy-vline
WA_PS0025_STR-KSU03 sy-vline
WA_PS0025_STR-KRT04 sy-vline
WA_PS0025_STR-PKT04 sy-vline
WA_PS0025_STR-KSU04 sy-vline
WA_PS0025_STR-KRT05 sy-vline
WA_PS0025_STR-PKT05 sy-vline
WA_PS0025_STR-KSU05 sy-vline
WA_PS0025_STR-KRT06 sy-vline
WA_PS0025_STR-PKT06 sy-vline
WA_PS0025_STR-KSU06 sy-vline INTO ld_text SEPARATED BY SPACE. *Add any further fields from structure WA_EKKO_STR you want to CONCATENATE... ENDLOOP. ENDFORM.