ABAP Select data from SAP table PM0D1 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 PM0D1 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 PM0D1. 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 PM0D1 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_PM0D1 TYPE STANDARD TABLE OF PM0D1,
      WA_PM0D1 TYPE PM0D1,
      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: <PM0D1> TYPE PM0D1.

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

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

*Select data and declare internal table using in-line method @DATA
*SELECT *
*  FROM PM0D1
*  INTO TABLE @DATA(IT_PM0D12).
*--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_PM0D1 INDEX 1 INTO DATA(WA_PM0D12).


*Demonstrate how to loop at an internal table and update values using a FIELD-SYMBOL
LOOP AT IT_PM0D1 ASSIGNING <PM0D1>.
*To update a field value using a field symbol simply change the value via the field symbol pointer
<PM0D1>-SEARK = 1.
<PM0D1>-AKTION = 1.
<PM0D1>-HISTO = 1.
<PM0D1>-GREDT1 = 1.
<PM0D1>-REFOB = 1.
ENDLOOP.

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

*Write selected data to screen/report before conversion.
  WRITE:/ sy-vline,   WA_PM0D1-REFSH, sy-vline,
WA_PM0D1-REFTX, sy-vline,
WA_PM0D1-RELCO, sy-vline,
WA_PM0D1-T4000, sy-vline,
WA_PM0D1-OTYPE, sy-vline,
WA_PM0D1-PLVAR, sy-vline.
ENDLOOP. *Add any further fields from structure WA_PM0D1 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_PM0D1 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_PM0D1 INTO WA_PM0D1. *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_PM0D1_STR,
SEARK TYPE STRING,
AKTION TYPE STRING,
HISTO TYPE STRING,
GREDT1 TYPE STRING,
REFOB TYPE STRING,
REFSH TYPE STRING,
REFTX TYPE STRING,
RELCO TYPE STRING,
T4000 TYPE STRING,
OTYPE TYPE STRING,
PLVAR TYPE STRING,
OPAGE TYPE STRING,
OTOT TYPE STRING,
PPAGE TYPE STRING,
PTOT TYPE STRING,
INFTT TYPE STRING,
PPSTAT TYPE STRING,
PPSTAT1 TYPE STRING,
PPSTAT2 TYPE STRING,
PPSTAT3 TYPE STRING,
PPSTAT4 TYPE STRING,
PPSTAT5 TYPE STRING,
PPSEL TYPE STRING,
INFOTYP TYPE STRING,
PPACTIV TYPE STRING,
PPPLANN TYPE STRING,
PPSUBM TYPE STRING,
PPAPROV TYPE STRING,
PPREJEC TYPE STRING,
PNUM TYPE STRING,
TOTAL TYPE STRING,
T5020 TYPE STRING,
PFK12 TYPE STRING,
ENDE TYPE STRING,
PFK13 TYPE STRING,
SETST TYPE STRING,
VON TYPE STRING,
FROM TYPE STRING,
TO TYPE STRING,
DPATT TYPE STRING,
TIMR1 TYPE STRING,
TIMR2 TYPE STRING,
TIMR3 TYPE STRING,
TIMR4 TYPE STRING,
TIMR5 TYPE STRING,
TIMR6 TYPE STRING,
TIMR7 TYPE STRING,
TIMR8 TYPE STRING,
TIMRB TYPE STRING,
TIMRD TYPE STRING,END OF T_EKKO_STR. DATA: WA_PM0D1_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_PM0D1_STR-SEARK sy-vline
WA_PM0D1_STR-AKTION sy-vline
WA_PM0D1_STR-HISTO sy-vline
WA_PM0D1_STR-GREDT1 sy-vline
WA_PM0D1_STR-REFOB sy-vline
WA_PM0D1_STR-REFSH sy-vline
WA_PM0D1_STR-REFTX sy-vline
WA_PM0D1_STR-RELCO sy-vline
WA_PM0D1_STR-T4000 sy-vline
WA_PM0D1_STR-OTYPE sy-vline
WA_PM0D1_STR-PLVAR sy-vline
WA_PM0D1_STR-OPAGE sy-vline
WA_PM0D1_STR-OTOT sy-vline
WA_PM0D1_STR-PPAGE sy-vline
WA_PM0D1_STR-PTOT sy-vline
WA_PM0D1_STR-INFTT sy-vline
WA_PM0D1_STR-PPSTAT sy-vline
WA_PM0D1_STR-PPSTAT1 sy-vline
WA_PM0D1_STR-PPSTAT2 sy-vline
WA_PM0D1_STR-PPSTAT3 sy-vline
WA_PM0D1_STR-PPSTAT4 sy-vline
WA_PM0D1_STR-PPSTAT5 sy-vline
WA_PM0D1_STR-PPSEL sy-vline
WA_PM0D1_STR-INFOTYP sy-vline
WA_PM0D1_STR-PPACTIV sy-vline
WA_PM0D1_STR-PPPLANN sy-vline
WA_PM0D1_STR-PPSUBM sy-vline
WA_PM0D1_STR-PPAPROV sy-vline
WA_PM0D1_STR-PPREJEC sy-vline
WA_PM0D1_STR-PNUM sy-vline
WA_PM0D1_STR-TOTAL sy-vline
WA_PM0D1_STR-T5020 sy-vline
WA_PM0D1_STR-PFK12 sy-vline
WA_PM0D1_STR-ENDE sy-vline
WA_PM0D1_STR-PFK13 sy-vline
WA_PM0D1_STR-SETST sy-vline
WA_PM0D1_STR-VON sy-vline
WA_PM0D1_STR-FROM sy-vline
WA_PM0D1_STR-TO sy-vline
WA_PM0D1_STR-DPATT sy-vline
WA_PM0D1_STR-TIMR1 sy-vline
WA_PM0D1_STR-TIMR2 sy-vline
WA_PM0D1_STR-TIMR3 sy-vline
WA_PM0D1_STR-TIMR4 sy-vline
WA_PM0D1_STR-TIMR5 sy-vline
WA_PM0D1_STR-TIMR6 sy-vline
WA_PM0D1_STR-TIMR7 sy-vline
WA_PM0D1_STR-TIMR8 sy-vline
WA_PM0D1_STR-TIMRB sy-vline
WA_PM0D1_STR-TIMRD sy-vline INTO ld_text SEPARATED BY SPACE. *Add any further fields from structure WA_EKKO_STR you want to CONCATENATE... ENDLOOP. ENDFORM.