ABAP Select data from SAP table /SCMB/TMDL_ODM_SHP_HDR_STR 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 /SCMB/TMDL_ODM_SHP_HDR_STR 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 /SCMB/TMDL_ODM_SHP_HDR_STR. 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 /SCMB/TMDL_ODM_SHP_HDR_STR 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_/SCMB/TMDL_ODM_SHP_HDR_STR TYPE STANDARD TABLE OF /SCMB/TMDL_ODM_SHP_HDR_STR,
      WA_/SCMB/TMDL_ODM_SHP_HDR_STR TYPE /SCMB/TMDL_ODM_SHP_HDR_STR,
      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: </SCMB/TMDL_ODM_SHP_HDR_STR> TYPE /SCMB/TMDL_ODM_SHP_HDR_STR.

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

SELECT *
*restrict ABAP select to first 10 rows
 UP TO 10 ROWS      
  FROM /SCMB/TMDL_ODM_SHP_HDR_STR
  INTO TABLE IT_/SCMB/TMDL_ODM_SHP_HDR_STR.

*Select data and declare internal table using in-line method @DATA
*SELECT *
*  FROM /SCMB/TMDL_ODM_SHP_HDR_STR
*  INTO TABLE @DATA(IT_/SCMB/TMDL_ODM_SHP_HDR_STR2).
*--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_/SCMB/TMDL_ODM_SHP_HDR_STR INDEX 1 INTO DATA(WA_/SCMB/TMDL_ODM_SHP_HDR_STR2).


*Demonstrate how to loop at an internal table and update values using a FIELD-SYMBOL
LOOP AT IT_/SCMB/TMDL_ODM_SHP_HDR_STR ASSIGNING </SCMB/TMDL_ODM_SHP_HDR_STR>.
*To update a field value using a field symbol simply change the value via the field symbol pointer
</SCMB/TMDL_ODM_SHP_HDR_STR>-VRSIOID = 1.
</SCMB/TMDL_ODM_SHP_HDR_STR>-ORDID = 1.
</SCMB/TMDL_ODM_SHP_HDR_STR>-ORTYPE = 1.
</SCMB/TMDL_ODM_SHP_HDR_STR>-BSKEY = 1.
</SCMB/TMDL_ODM_SHP_HDR_STR>-ORDNO = 1.
ENDLOOP.

LOOP AT IT_/SCMB/TMDL_ODM_SHP_HDR_STR INTO WA_/SCMB/TMDL_ODM_SHP_HDR_STR.
*Write horizonal line to screen report.
  WRITE:/ sy-uline.

*Write selected data to screen/report before conversion.
  WRITE:/ sy-vline,   WA_/SCMB/TMDL_ODM_SHP_HDR_STR-EXTNO, sy-vline,
WA_/SCMB/TMDL_ODM_SHP_HDR_STR-INCO1, sy-vline,
WA_/SCMB/TMDL_ODM_SHP_HDR_STR-INCO2, sy-vline,
WA_/SCMB/TMDL_ODM_SHP_HDR_STR-FRKL, sy-vline,
WA_/SCMB/TMDL_ODM_SHP_HDR_STR-MAXPR, sy-vline,
WA_/SCMB/TMDL_ODM_SHP_HDR_STR-MAXCR, sy-vline.
ENDLOOP. *Add any further fields from structure WA_/SCMB/TMDL_ODM_SHP_HDR_STR 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_/SCMB/TMDL_ODM_SHP_HDR_STR 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_/SCMB/TMDL_ODM_SHP_HDR_STR INTO WA_/SCMB/TMDL_ODM_SHP_HDR_STR. *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.

*Conversion exit ALPHA, internal->external for field ORDNO CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-ORDNO IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-ORDNO.
WRITE:/ 'New Value:', ld_input.

*Conversion exit ALPHA, internal->external for field EXTNO CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-EXTNO IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-EXTNO.
WRITE:/ 'New Value:', ld_input.

*Conversion exit ISOLA, internal->external for field DRIVER_LGE CALL FUNCTION 'CONVERSION_EXIT_ISOLA_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-DRIVER_LGE IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-DRIVER_LGE.
WRITE:/ 'New Value:', ld_input.

*Conversion exit CUNIT, internal->external for field GRWGT_UOM CALL FUNCTION 'CONVERSION_EXIT_CUNIT_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-GRWGT_UOM IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-GRWGT_UOM.
WRITE:/ 'New Value:', ld_input.

*Conversion exit CUNIT, internal->external for field GRWGT_UOM_SI CALL FUNCTION 'CONVERSION_EXIT_CUNIT_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-GRWGT_UOM_SI IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-GRWGT_UOM_SI.
WRITE:/ 'New Value:', ld_input.

*Conversion exit CUNIT, internal->external for field GRVOL_UOM CALL FUNCTION 'CONVERSION_EXIT_CUNIT_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-GRVOL_UOM IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-GRVOL_UOM.
WRITE:/ 'New Value:', ld_input.

*Conversion exit CUNIT, internal->external for field GRVOL_UOM_SI CALL FUNCTION 'CONVERSION_EXIT_CUNIT_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-GRVOL_UOM_SI IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-GRVOL_UOM_SI.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field CRETST CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-CRETST IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-CRETST.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field CHGTST CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-CHGTST IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-CHGTST.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field TIME_PLANTSF CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_PLANTSF IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_PLANTSF.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field TIME_ACTTSF CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_ACTTSF IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_ACTTSF.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field TIME_PLANTST CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_PLANTST IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_PLANTST.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field TIME_ACTTST CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_ACTTST IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_ACTTST.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field TIME_PLANTLS CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_PLANTLS IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_PLANTLS.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field TIME_ACTTLS CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_ACTTLS IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_ACTTLS.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field TIME_PLANTLE CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_PLANTLE IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_PLANTLE.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field TIME_ACTTLE CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_ACTTLE IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_ACTTLE.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field TIME_PLANTTB CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_PLANTTB IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_PLANTTB.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field TIME_ACTTTB CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_ACTTTB IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_ACTTTB.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field TIME_PLANTTE CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_PLANTTE IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_PLANTTE.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTPS, internal->external for field TIME_ACTTTE CALL FUNCTION 'CONVERSION_EXIT_TSTPS_OUTPUT' EXPORTING input = WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_ACTTTE IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMB/TMDL_ODM_SHP_HDR_STR-TIME_ACTTTE.
WRITE:/ 'New Value:', ld_input.
ENDFORM. *&---------------------------------------------------------------------* *& Form process_as_string_field_values *&---------------------------------------------------------------------* FORM process_as_string_field_values CHANGING p_EKKO LIKE wa_EKKO. TYPES: BEGIN OF T_/SCMB/TMDL_ODM_SHP_HDR_STR_STR,
VRSIOID TYPE STRING,
ORDID TYPE STRING,
ORTYPE TYPE STRING,
BSKEY TYPE STRING,
ORDNO TYPE STRING,
EXTNO TYPE STRING,
INCO1 TYPE STRING,
INCO2 TYPE STRING,
FRKL TYPE STRING,
MAXPR TYPE STRING,
MAXCR TYPE STRING,
ACTPR TYPE STRING,
ACTCR TYPE STRING,
STAGE_CODE TYPE STRING,
TRANSMEANS_JRNY TYPE STRING,
MOT TYPE STRING,
MTR TYPE STRING,
VEHICLE TYPE STRING,
MTR_EXT TYPE STRING,
MOT_EXT TYPE STRING,
TRANSMEANS_OWNER TYPE STRING,
ROUTE_ID TYPE STRING,
TRANSIT_DIR TYPE STRING,
SERVICE_LEVEL_CD TYPE STRING,
SERVICE_REQ_CD TYPE STRING,
PLANNING_POINT TYPE STRING,
LICENCE_PLATE TYPE STRING,
DRIVER TYPE STRING,
DRIVER_CO TYPE STRING,
DRIVER_LGE TYPE STRING,
HAZMATFLG TYPE STRING,
SHIPMENT_TYPE TYPE STRING,
LOAD_SEQ_NR TYPE STRING,
UNLOAD_SEQ_NR TYPE STRING,
GRWGT TYPE STRING,
GRWGT_UOM TYPE STRING,
GRWGT_SI TYPE STRING,
GRWGT_UOM_SI TYPE STRING,
GRVOL TYPE STRING,
GRVOL_UOM TYPE STRING,
GRVOL_SI TYPE STRING,
GRVOL_UOM_SI TYPE STRING,
SHPSTATE TYPE STRING,
CREUSR TYPE STRING,
CRETST TYPE STRING,
CHGUSR TYPE STRING,
CHGTST TYPE STRING,
CHGMODE TYPE STRING,
OBJCHG TYPE STRING,
PRTROLEPSF TYPE STRING,
PRTIDPSF TYPE STRING,
LOCIDPSF TYPE STRING,
PRTROLEPST TYPE STRING,
PRTIDPST TYPE STRING,
LOCIDPST TYPE STRING,
TZONE_PLANTSF TYPE STRING,
TIME_PLANTSF TYPE STRING,
TZONE_ACTTSF TYPE STRING,
TIME_ACTTSF TYPE STRING,
TZONE_PLANTST TYPE STRING,
TIME_PLANTST TYPE STRING,
TZONE_ACTTST TYPE STRING,
TIME_ACTTST TYPE STRING,
TZONE_PLANTLS TYPE STRING,
TIME_PLANTLS TYPE STRING,
TZONE_ACTTLS TYPE STRING,
TIME_ACTTLS TYPE STRING,
TZONE_PLANTLE TYPE STRING,
TIME_PLANTLE TYPE STRING,
TZONE_ACTTLE TYPE STRING,
TIME_ACTTLE TYPE STRING,
TZONE_PLANTTB TYPE STRING,
TIME_PLANTTB TYPE STRING,
TZONE_ACTTTB TYPE STRING,
TIME_ACTTTB TYPE STRING,
TZONE_PLANTTE TYPE STRING,
TIME_PLANTTE TYPE STRING,
TZONE_ACTTTE TYPE STRING,
TIME_ACTTTE TYPE STRING,
CARRIER TYPE STRING,
FORWARDER TYPE STRING,
CARR_SCAC TYPE STRING,
FORW_SCAC TYPE STRING,
STATUS_ARCD TYPE STRING,
STATUS_ASGB TYPE STRING,
STATUS_ASGF TYPE STRING,
STATUS_BOL TYPE STRING,
STATUS_CMPL TYPE STRING,
STATUS_DELE TYPE STRING,
STATUS_INVL TYPE STRING,
STATUS_LBEG TYPE STRING,
STATUS_LEND TYPE STRING,
STATUS_TBEG TYPE STRING,
STATUS_TEND TYPE STRING,
STATUS_FSHP TYPE STRING,
STATUS_PSHP TYPE STRING,
STATUS_FCC TYPE STRING,
STATUS_OCB TYPE STRING,
STATUS_BREL TYPE STRING,
STATUS_SREL TYPE STRING,
STATUS_BCOF TYPE STRING,
STATUS_BRCV TYPE STRING,
STATUS_BREJ TYPE STRING,
STATUS_SCOF TYPE STRING,
STATUS_SRCV TYPE STRING,
STATUS_SREJ TYPE STRING,
DUM TYPE STRING,
BOK_REL_COUNTER TYPE STRING,
SHP_REL_COUNTER TYPE STRING,
PAYMENT_IND TYPE STRING,
CHARGE_CATEGORY TYPE STRING,
LOCNO_CA_REL_OFF TYPE STRING,
REQ_DOCUS TYPE STRING,
COP_REQ_DOCUS TYPE STRING,END OF T_EKKO_STR. DATA: WA_/SCMB/TMDL_ODM_SHP_HDR_STR_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_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-VRSIOID sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-ORDID sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-ORTYPE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-BSKEY sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-ORDNO sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-EXTNO sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-INCO1 sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-INCO2 sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-FRKL sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-MAXPR sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-MAXCR sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-ACTPR sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-ACTCR sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STAGE_CODE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TRANSMEANS_JRNY sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-MOT sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-MTR sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-VEHICLE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-MTR_EXT sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-MOT_EXT sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TRANSMEANS_OWNER sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-ROUTE_ID sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TRANSIT_DIR sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-SERVICE_LEVEL_CD sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-SERVICE_REQ_CD sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-PLANNING_POINT sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-LICENCE_PLATE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-DRIVER sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-DRIVER_CO sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-DRIVER_LGE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-HAZMATFLG sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-SHIPMENT_TYPE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-LOAD_SEQ_NR sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-UNLOAD_SEQ_NR sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-GRWGT sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-GRWGT_UOM sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-GRWGT_SI sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-GRWGT_UOM_SI sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-GRVOL sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-GRVOL_UOM sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-GRVOL_SI sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-GRVOL_UOM_SI sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-SHPSTATE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-CREUSR sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-CRETST sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-CHGUSR sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-CHGTST sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-CHGMODE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-OBJCHG sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-PRTROLEPSF sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-PRTIDPSF sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-LOCIDPSF sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-PRTROLEPST sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-PRTIDPST sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-LOCIDPST sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TZONE_PLANTSF sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TIME_PLANTSF sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TZONE_ACTTSF sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TIME_ACTTSF sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TZONE_PLANTST sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TIME_PLANTST sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TZONE_ACTTST sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TIME_ACTTST sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TZONE_PLANTLS sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TIME_PLANTLS sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TZONE_ACTTLS sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TIME_ACTTLS sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TZONE_PLANTLE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TIME_PLANTLE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TZONE_ACTTLE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TIME_ACTTLE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TZONE_PLANTTB sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TIME_PLANTTB sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TZONE_ACTTTB sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TIME_ACTTTB sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TZONE_PLANTTE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TIME_PLANTTE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TZONE_ACTTTE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-TIME_ACTTTE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-CARRIER sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-FORWARDER sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-CARR_SCAC sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-FORW_SCAC sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_ARCD sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_ASGB sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_ASGF sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_BOL sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_CMPL sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_DELE sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_INVL sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_LBEG sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_LEND sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_TBEG sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_TEND sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_FSHP sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_PSHP sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_FCC sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_OCB sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_BREL sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_SREL sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_BCOF sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_BRCV sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_BREJ sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_SCOF sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_SRCV sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-STATUS_SREJ sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-DUM sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-BOK_REL_COUNTER sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-SHP_REL_COUNTER sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-PAYMENT_IND sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-CHARGE_CATEGORY sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-LOCNO_CA_REL_OFF sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-REQ_DOCUS sy-vline
WA_/SCMB/TMDL_ODM_SHP_HDR_STR_STR-COP_REQ_DOCUS sy-vline INTO ld_text SEPARATED BY SPACE. *Add any further fields from structure WA_EKKO_STR you want to CONCATENATE... ENDLOOP. ENDFORM.