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

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

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

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


*Demonstrate how to loop at an internal table and update values using a FIELD-SYMBOL
LOOP AT IT_/SCMTMS/S_TOR_Q_FB_OCEAN_R ASSIGNING </SCMTMS/S_TOR_Q_FB_OCEAN_R>.
*To update a field value using a field symbol simply change the value via the field symbol pointer
</SCMTMS/S_TOR_Q_FB_OCEAN_R>-DB_KEY = 1.
</SCMTMS/S_TOR_Q_FB_OCEAN_R>-FIRST_STOP_UUID = 1.
</SCMTMS/S_TOR_Q_FB_OCEAN_R>-FIRST_STOP_LOG_LOC_UUID = 1.
</SCMTMS/S_TOR_Q_FB_OCEAN_R>-FIRST_STOP_LOG_LOC_ID = 1.
</SCMTMS/S_TOR_Q_FB_OCEAN_R>-FIRST_STOP_LOG_UNLOC_ID = 1.
ENDLOOP.

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

*Write selected data to screen/report before conversion.
  WRITE:/ sy-vline,   WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-FIRST_STOP_LOG_IATALOC_ID, sy-vline,
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-FIRST_STOP_LOG_LOC_ADDRESSE, sy-vline,
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-FIRST_STOP_LOG_LOC_COUNTRY, sy-vline,
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-FIRST_STOP_LOG_LOC_REGION, sy-vline,
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-FIRST_STOP_LOG_LOC_CITY, sy-vline,
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-FIRST_STOP_LOG_LOC_ZIP, sy-vline.
ENDLOOP. *Add any further fields from structure WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R 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_/SCMTMS/S_TOR_Q_FB_OCEAN_R 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_/SCMTMS/S_TOR_Q_FB_OCEAN_R INTO WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R. *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 ID004, internal->external for field FIRST_STOP_LOG_LOC_UUID CALL FUNCTION 'CONVERSION_EXIT_ID004_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-FIRST_STOP_LOG_LOC_UUID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-FIRST_STOP_LOG_LOC_UUID.
WRITE:/ 'New Value:', ld_input.

*Conversion exit ID004, internal->external for field FIRST_STOP_ADR_LOC_UUID CALL FUNCTION 'CONVERSION_EXIT_ID004_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-FIRST_STOP_ADR_LOC_UUID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-FIRST_STOP_ADR_LOC_UUID.
WRITE:/ 'New Value:', ld_input.

*Conversion exit ID004, internal->external for field LAST_STOP_LOG_LOC_UUID CALL FUNCTION 'CONVERSION_EXIT_ID004_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-LAST_STOP_LOG_LOC_UUID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-LAST_STOP_LOG_LOC_UUID.
WRITE:/ 'New Value:', ld_input.

*Conversion exit ID004, internal->external for field LAST_STOP_ADR_LOC_UUID CALL FUNCTION 'CONVERSION_EXIT_ID004_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-LAST_STOP_ADR_LOC_UUID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-LAST_STOP_ADR_LOC_UUID.
WRITE:/ 'New Value:', ld_input.

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

*Conversion exit QTYRN, internal->external for field DG_ADR_PTS_VAL CALL FUNCTION 'CONVERSION_EXIT_QTYRN_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-DG_ADR_PTS_VAL IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-DG_ADR_PTS_VAL.
WRITE:/ 'New Value:', ld_input.

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

*Conversion exit TSTLC, internal->external for field CREATED_ON CALL FUNCTION 'CONVERSION_EXIT_TSTLC_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-CREATED_ON IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-CREATED_ON.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTLC, internal->external for field CHANGED_ON CALL FUNCTION 'CONVERSION_EXIT_TSTLC_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-CHANGED_ON IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-CHANGED_ON.
WRITE:/ 'New Value:', ld_input.

*Conversion exit ID001, internal->external for field TSP CALL FUNCTION 'CONVERSION_EXIT_ID001_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-TSP IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-TSP.
WRITE:/ 'New Value:', ld_input.

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

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

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

*Conversion exit TSTRN, internal->external for field TOTAL_DURATION_NET CALL FUNCTION 'CONVERSION_EXIT_TSTRN_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-TOTAL_DURATION_NET IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-TOTAL_DURATION_NET.
WRITE:/ 'New Value:', ld_input.

*Conversion exit TSTRN, internal->external for field TOTAL_DURATION_GROSS CALL FUNCTION 'CONVERSION_EXIT_TSTRN_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-TOTAL_DURATION_GROSS IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-TOTAL_DURATION_GROSS.
WRITE:/ 'New Value:', ld_input.

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

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

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

*Conversion exit CM_ID, internal->external for field CM_ID CALL FUNCTION 'CONVERSION_EXIT_CM_ID_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-CM_ID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-CM_ID.
WRITE:/ 'New Value:', ld_input.

*Conversion exit QTYRN, internal->external for field GRO_WEI_VAL CALL FUNCTION 'CONVERSION_EXIT_QTYRN_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-GRO_WEI_VAL IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-GRO_WEI_VAL.
WRITE:/ 'New Value:', ld_input.

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

*Conversion exit QTYRN, internal->external for field GRO_VOL_VAL CALL FUNCTION 'CONVERSION_EXIT_QTYRN_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-GRO_VOL_VAL IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-GRO_VOL_VAL.
WRITE:/ 'New Value:', ld_input.

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

*Conversion exit QTYRN, internal->external for field QUA_PCS_VAL CALL FUNCTION 'CONVERSION_EXIT_QTYRN_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-QUA_PCS_VAL IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-QUA_PCS_VAL.
WRITE:/ 'New Value:', ld_input.

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

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

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

*Conversion exit ALPHA, internal->external for field BTD_ID CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-BTD_ID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R-BTD_ID.
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_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR,
DB_KEY TYPE STRING,
FIRST_STOP_UUID TYPE STRING,
FIRST_STOP_LOG_LOC_UUID TYPE STRING,
FIRST_STOP_LOG_LOC_ID TYPE STRING,
FIRST_STOP_LOG_UNLOC_ID TYPE STRING,
FIRST_STOP_LOG_IATALOC_ID TYPE STRING,
FIRST_STOP_LOG_LOC_ADDRESSE TYPE STRING,
FIRST_STOP_LOG_LOC_COUNTRY TYPE STRING,
FIRST_STOP_LOG_LOC_REGION TYPE STRING,
FIRST_STOP_LOG_LOC_CITY TYPE STRING,
FIRST_STOP_LOG_LOC_ZIP TYPE STRING,
FIRST_STOP_ADR_LOC_UUID TYPE STRING,
FIRST_STOP_ACC_START TYPE STRING,
FIRST_STOP_REQ_START TYPE STRING,
FIRST_STOP_REQ_END TYPE STRING,
FIRST_STOP_ACC_END TYPE STRING,
FIRST_STOP_APPOINTMENT_START TYPE STRING,
FIRST_STOP_APPOINTMENT_END TYPE STRING,
FIRST_STOP_AGGR_ASSGN_START_L TYPE STRING,
FIRST_STOP_AGGR_ASSGN_END_L TYPE STRING,
FIRST_ACTIVITY TYPE STRING,
LAST_STOP_UUID TYPE STRING,
LAST_STOP_LOG_LOC_UUID TYPE STRING,
LAST_STOP_LOG_LOC_ID TYPE STRING,
LAST_STOP_LOG_UNLOC_ID TYPE STRING,
LAST_STOP_LOG_IATALOC_ID TYPE STRING,
LAST_STOP_LOG_LOC_ADDRESSE TYPE STRING,
LAST_STOP_LOG_LOC_COUNTRY TYPE STRING,
LAST_STOP_LOG_LOC_REGION TYPE STRING,
LAST_STOP_LOG_LOC_CITY TYPE STRING,
LAST_STOP_LOG_LOC_ZIP TYPE STRING,
LAST_STOP_ADR_LOC_UUID TYPE STRING,
LAST_STOP_ACC_START TYPE STRING,
LAST_STOP_REQ_START TYPE STRING,
LAST_STOP_REQ_END TYPE STRING,
LAST_STOP_ACC_END TYPE STRING,
LAST_STOP_APPOINTMENT_START TYPE STRING,
LAST_STOP_APPOINTMENT_END TYPE STRING,
LAST_STOP_AGGR_ASSGN_START_L TYPE STRING,
LAST_STOP_AGGR_ASSGN_END_L TYPE STRING,
LAST_ACTIVITY TYPE STRING,
PLAN_TRANS_START TYPE STRING,
PLAN_TRANS_END TYPE STRING,
MTR TYPE STRING,
MOT TYPE STRING,
MOT_CAT TYPE STRING,
QUERY_NODE_DB_KEY TYPE STRING,
DISCREPANCY TYPE STRING,
TOR_CAT TYPE STRING,
TOR_ID TYPE STRING,
TOR_TYPE TYPE STRING,
BLOCK_REASON TYPE STRING,
ERROR_CATEGORY TYPE STRING,
BLOCK_CAT TYPE STRING,
LABELTXT TYPE STRING,
DGO_INDICATOR TYPE STRING,
DG_ADR_PTS_VAL TYPE STRING,
DG_ADR_PTS_UNI TYPE STRING,
DG_ADR_NO_EXEMPTION TYPE STRING,
FIXATION TYPE STRING,
AUTO_PLAN TYPE STRING,
BLK_PLAN TYPE STRING,
BLK_EXEC TYPE STRING,
BRC_PLAN TYPE STRING,
BRC_EXEC TYPE STRING,
DATETIME_BLK_PLA TYPE STRING,
USER_ID_BLK_PLAN TYPE STRING,
DATETIME_BLK_EXE TYPE STRING,
USER_ID_BLK_EXEC TYPE STRING,
EXEC_ORG_ID TYPE STRING,
EXEC_GRP_ID TYPE STRING,
PURCH_ORG_ID TYPE STRING,
PURCH_GRP_ID TYPE STRING,
ARCHIVING TYPE STRING,
LIFECYCLE TYPE STRING,
LC_COMP_SET_MAN TYPE STRING,
SHPM_TRANSM TYPE STRING,
PLAN_STATUS_ROOT TYPE STRING,
COMPLIANCE TYPE STRING,
DELIVERY TYPE STRING,
CREATED_BY TYPE STRING,
CREATED_ON TYPE STRING,
CHANGED_BY TYPE STRING,
CHANGED_ON TYPE STRING,
TSP TYPE STRING,
SHIPPERID TYPE STRING,
CONSIGNEEID TYPE STRING,
TSPID TYPE STRING,
RESP_PERSON TYPE STRING,
TRAFFIC_DIRECT TYPE STRING,
RES_KEY TYPE STRING,
SCHED_KEY TYPE STRING,
SCHED_DEP TYPE STRING,
TCC_AMT_NET_VAL TYPE STRING,
TCC_AMT_NET_CUR TYPE STRING,
TOT_DSO_AMT TYPE STRING,
TOT_DSO_CUR TYPE STRING,
CONS_SAVINGS TYPE STRING,
TOTAL_DISTANCE_KM TYPE STRING,
TOTAL_DURATION_NET TYPE STRING,
TOTAL_DURATION_GROSS TYPE STRING,
DLV_GOODS_MVMNT TYPE STRING,
GOODS_SUPPLIERID TYPE STRING,
DLV_GOODS_MVMNT_PROC_IND TYPE STRING,
VOYAGE_ID TYPE STRING,
VESSEL_ID TYPE STRING,
IMO_ID TYPE STRING,
COUNTRY TYPE STRING,
SERVICE_LVL_PL TYPE STRING,
SERVICE_LVL_PD TYPE STRING,
PORT_OF_LOADING_UUID TYPE STRING,
PORT_OF_LOADING TYPE STRING,
CARGO_CUTOFF TYPE STRING,
CARGO_CUTOFF_POL TYPE STRING,
CARGO_CUTOFF_CFS TYPE STRING,
VESSEL_SAIL_DATE TYPE STRING,
PORT_OF_DISCHARGE TYPE STRING,
EXP_TIME_ARRIVAL TYPE STRING,
CARGO_TAKEOVER_TIME TYPE STRING,
TCC_INV_STATUS TYPE STRING,
TCC_CALC_STATUS TYPE STRING,
SHIPPED_ON_BOARD TYPE STRING,
SHIPPING_TYPE TYPE STRING,
PARTNER_REF_ID TYPE STRING,
PARTNER_MBL_ID TYPE STRING,
EXPORT_ORG_ID TYPE STRING,
IMPORT_ORG_ID TYPE STRING,
MBL_ISSUING_DATE TYPE STRING,
PARTNER_MBL_RCVD TYPE STRING,
MANIFESTED TYPE STRING,
TRANSSRVLVL_CODE TYPE STRING,
INV_BLOCK TYPE STRING,
INV_BLOCK_REASON TYPE STRING,
DATETIME_BLK_INV TYPE STRING,
USER_ID_BLK_INV TYPE STRING,
CONFIRMATION TYPE STRING,
SUBCONTRACTING TYPE STRING,
CONF_STATUS TYPE STRING,
CM_ID TYPE STRING,
CS_EXECUTED TYPE STRING,
TEND_EXECUTED TYPE STRING,
TSP_SCAC TYPE STRING,
CUSTOMS TYPE STRING,
MAX_UTIL TYPE STRING,
MAX_UTIL_MASS TYPE STRING,
MAX_UTIL_VOLUME TYPE STRING,
DENSITY_FACTOR TYPE STRING,
ORG_INTERACTION TYPE STRING,
BL_NUMBER TYPE STRING,
TURES_ID TYPE STRING,
GRO_WEI TYPE STRING,
GRO_WEI_VAL TYPE STRING,
GRO_WEI_UNI TYPE STRING,
GRO_VOL TYPE STRING,
GRO_VOL_VAL TYPE STRING,
GRO_VOL_UNI TYPE STRING,
QUA_PCS TYPE STRING,
QUA_PCS_VAL TYPE STRING,
QUA_PCS_UNI TYPE STRING,
EXECUTION TYPE STRING,
PU_FO_ID TYPE STRING,
DL_FO_ID TYPE STRING,
ERP_SHPM_BTDID TYPE STRING,
ERP_SHPM_LOGSYS TYPE STRING,
ERP_SHPM_TYPE TYPE STRING,
FIRST_SHP_TRANSM TYPE STRING,
LAST_SHPM_TRANSM TYPE STRING,
LOGISTIC_STAT_TXT TYPE STRING,
DOC_CHECK_STATUS TYPE STRING,
CROSS_DOC_CHECK_STATUS TYPE STRING,
HANDLING_EXEC TYPE STRING,
WH_TRANSM_STATUS TYPE STRING,
LOAD_PLAN_STOP TYPE STRING,
UNLOAD_PLAN_STOP TYPE STRING,
PACKAGE_ID TYPE STRING,
SCHED_REF_DATA_STATUS TYPE STRING,
CUTOFF_CARR_VGM TYPE STRING,
RES_ID TYPE STRING,
PACKAGING_STATUS TYPE STRING,
NO_PKG_UNPLN_CARGO_ITEMS TYPE STRING,
NO_PKG_NOTFIN_CAPA_ITEMS TYPE STRING,
NOT_BLOCKED TYPE STRING,
WH_TR_NOT_DETERMINED TYPE STRING,
BTD_ID TYPE STRING,END OF T_EKKO_STR. DATA: WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_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_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DB_KEY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_UUID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_LOG_LOC_UUID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_LOG_LOC_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_LOG_UNLOC_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_LOG_IATALOC_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_LOG_LOC_ADDRESSE sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_LOG_LOC_COUNTRY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_LOG_LOC_REGION sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_LOG_LOC_CITY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_LOG_LOC_ZIP sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_ADR_LOC_UUID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_ACC_START sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_REQ_START sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_REQ_END sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_ACC_END sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_APPOINTMENT_START sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_APPOINTMENT_END sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_AGGR_ASSGN_START_L sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_STOP_AGGR_ASSGN_END_L sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_ACTIVITY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_UUID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_LOG_LOC_UUID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_LOG_LOC_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_LOG_UNLOC_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_LOG_IATALOC_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_LOG_LOC_ADDRESSE sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_LOG_LOC_COUNTRY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_LOG_LOC_REGION sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_LOG_LOC_CITY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_LOG_LOC_ZIP sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_ADR_LOC_UUID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_ACC_START sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_REQ_START sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_REQ_END sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_ACC_END sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_APPOINTMENT_START sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_APPOINTMENT_END sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_AGGR_ASSGN_START_L sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_STOP_AGGR_ASSGN_END_L sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_ACTIVITY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PLAN_TRANS_START sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PLAN_TRANS_END sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-MTR sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-MOT sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-MOT_CAT sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-QUERY_NODE_DB_KEY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DISCREPANCY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TOR_CAT sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TOR_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TOR_TYPE sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-BLOCK_REASON sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-ERROR_CATEGORY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-BLOCK_CAT sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LABELTXT sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DGO_INDICATOR sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DG_ADR_PTS_VAL sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DG_ADR_PTS_UNI sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DG_ADR_NO_EXEMPTION sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIXATION sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-AUTO_PLAN sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-BLK_PLAN sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-BLK_EXEC sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-BRC_PLAN sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-BRC_EXEC sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DATETIME_BLK_PLA sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-USER_ID_BLK_PLAN sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DATETIME_BLK_EXE sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-USER_ID_BLK_EXEC sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-EXEC_ORG_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-EXEC_GRP_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PURCH_ORG_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PURCH_GRP_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-ARCHIVING sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LIFECYCLE sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LC_COMP_SET_MAN sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-SHPM_TRANSM sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PLAN_STATUS_ROOT sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-COMPLIANCE sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DELIVERY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CREATED_BY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CREATED_ON sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CHANGED_BY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CHANGED_ON sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TSP sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-SHIPPERID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CONSIGNEEID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TSPID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-RESP_PERSON sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TRAFFIC_DIRECT sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-RES_KEY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-SCHED_KEY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-SCHED_DEP sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TCC_AMT_NET_VAL sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TCC_AMT_NET_CUR sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TOT_DSO_AMT sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TOT_DSO_CUR sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CONS_SAVINGS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TOTAL_DISTANCE_KM sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TOTAL_DURATION_NET sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TOTAL_DURATION_GROSS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DLV_GOODS_MVMNT sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-GOODS_SUPPLIERID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DLV_GOODS_MVMNT_PROC_IND sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-VOYAGE_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-VESSEL_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-IMO_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-COUNTRY sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-SERVICE_LVL_PL sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-SERVICE_LVL_PD sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PORT_OF_LOADING_UUID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PORT_OF_LOADING sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CARGO_CUTOFF sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CARGO_CUTOFF_POL sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CARGO_CUTOFF_CFS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-VESSEL_SAIL_DATE sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PORT_OF_DISCHARGE sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-EXP_TIME_ARRIVAL sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CARGO_TAKEOVER_TIME sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TCC_INV_STATUS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TCC_CALC_STATUS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-SHIPPED_ON_BOARD sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-SHIPPING_TYPE sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PARTNER_REF_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PARTNER_MBL_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-EXPORT_ORG_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-IMPORT_ORG_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-MBL_ISSUING_DATE sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PARTNER_MBL_RCVD sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-MANIFESTED sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TRANSSRVLVL_CODE sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-INV_BLOCK sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-INV_BLOCK_REASON sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DATETIME_BLK_INV sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-USER_ID_BLK_INV sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CONFIRMATION sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-SUBCONTRACTING sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CONF_STATUS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CM_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CS_EXECUTED sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TEND_EXECUTED sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TSP_SCAC sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CUSTOMS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-MAX_UTIL sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-MAX_UTIL_MASS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-MAX_UTIL_VOLUME sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DENSITY_FACTOR sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-ORG_INTERACTION sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-BL_NUMBER sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-TURES_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-GRO_WEI sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-GRO_WEI_VAL sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-GRO_WEI_UNI sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-GRO_VOL sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-GRO_VOL_VAL sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-GRO_VOL_UNI sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-QUA_PCS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-QUA_PCS_VAL sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-QUA_PCS_UNI sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-EXECUTION sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PU_FO_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DL_FO_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-ERP_SHPM_BTDID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-ERP_SHPM_LOGSYS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-ERP_SHPM_TYPE sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-FIRST_SHP_TRANSM sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LAST_SHPM_TRANSM sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LOGISTIC_STAT_TXT sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-DOC_CHECK_STATUS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CROSS_DOC_CHECK_STATUS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-HANDLING_EXEC sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-WH_TRANSM_STATUS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-LOAD_PLAN_STOP sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-UNLOAD_PLAN_STOP sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PACKAGE_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-SCHED_REF_DATA_STATUS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-CUTOFF_CARR_VGM sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-RES_ID sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-PACKAGING_STATUS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-NO_PKG_UNPLN_CARGO_ITEMS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-NO_PKG_NOTFIN_CAPA_ITEMS sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-NOT_BLOCKED sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-WH_TR_NOT_DETERMINED sy-vline
WA_/SCMTMS/S_TOR_Q_FB_OCEAN_R_STR-BTD_ID sy-vline INTO ld_text SEPARATED BY SPACE. *Add any further fields from structure WA_EKKO_STR you want to CONCATENATE... ENDLOOP. ENDFORM.