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

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

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

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


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

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

*Write selected data to screen/report before conversion.
  WRITE:/ sy-vline,   WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-FIRST_STOP_LOG_IATALOC_ID, sy-vline,
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-FIRST_STOP_LOG_LOC_ADDRESSE, sy-vline,
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-FIRST_STOP_LOG_LOC_COUNTRY, sy-vline,
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-FIRST_STOP_LOG_LOC_REGION, sy-vline,
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-FIRST_STOP_LOG_LOC_CITY, sy-vline,
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-FIRST_STOP_LOG_LOC_ZIP, sy-vline.
ENDLOOP. *Add any further fields from structure WA_/SCMTMS/S_UI_POW_R_FB_MSTOP 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_UI_POW_R_FB_MSTOP 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_UI_POW_R_FB_MSTOP INTO WA_/SCMTMS/S_UI_POW_R_FB_MSTOP. *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_UI_POW_R_FB_MSTOP-FIRST_STOP_LOG_LOC_UUID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-FIRST_STOP_ADR_LOC_UUID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-LAST_STOP_LOG_LOC_UUID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-LAST_STOP_ADR_LOC_UUID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-TOR_ID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-DG_ADR_PTS_VAL IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-DG_ADR_PTS_UNI IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-CREATED_ON IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-CHANGED_ON IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-TSP IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-SHIPPERID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-CONSIGNEEID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-TSPID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-TOTAL_DURATION_NET IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-TOTAL_DURATION_GROSS IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-GOODS_SUPPLIERID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-GOODS_SUPPLIERID.
WRITE:/ 'New Value:', ld_input.

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

*Conversion exit ALPHA, internal->external for field BUYORIG_BTD_ID CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT' EXPORTING input = WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-BUYORIG_BTD_ID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-BUYORIG_BTD_ID.
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_UI_POW_R_FB_MSTOP-ERP_SHPM_BTDID IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-ERP_SHPM_LOGSYS IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-ERP_SHPM_LOGSYS.
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_UI_POW_R_FB_MSTOP-GRO_WEI_VAL IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-GRO_WEI_UNI IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-GRO_VOL_VAL IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-GRO_VOL_UNI IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-QUA_PCS_VAL IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-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_UI_POW_R_FB_MSTOP-QUA_PCS_UNI IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-QUA_PCS_UNI.
WRITE:/ 'New Value:', ld_input.

*Conversion exit CUNIT, internal->external for field TOTAL_DISTANCE_UOM CALL FUNCTION 'CONVERSION_EXIT_CUNIT_OUTPUT' EXPORTING input = WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-TOTAL_DISTANCE_UOM IMPORTING output = ld_input.
WRITE:/ 'Org Value:', WA_/SCMTMS/S_UI_POW_R_FB_MSTOP-TOTAL_DISTANCE_UOM.
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_UI_POW_R_FB_MSTOP_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,
TCC_INV_STATUS TYPE STRING,
TCC_CALC_STATUS TYPE STRING,
TRQ_ID TYPE STRING,
PARTNER_REF_ID TYPE STRING,
PARTNER_MBL_ID TYPE STRING,
PARTNER_MBL_RCVD TYPE STRING,
HBL_NUMBER 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,
CS_EXECUTED TYPE STRING,
TEND_EXECUTED TYPE STRING,
CUSTOMS TYPE STRING,
MAX_UTIL TYPE STRING,
MAX_UTIL_MASS TYPE STRING,
MAX_UTIL_VOLUME TYPE STRING,
DENSITY_FACTOR TYPE STRING,
HANDLING_EXEC TYPE STRING,
WH_TRANSM_STATUS TYPE STRING,
BUYORIG_BTD_ID TYPE STRING,
EXECUTION 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,
LAST_UPD_BY_ERP 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,
LOGISTIC_STAT_TXT TYPE STRING,
DOC_CHECK_STATUS TYPE STRING,
CROSS_DOC_CHECK_STATUS TYPE STRING,
VOYAGE_ID TYPE STRING,
VESSEL_ID TYPE STRING,
IMO_ID TYPE STRING,
COUNTRY TYPE STRING,
MOT_ROOT TYPE STRING,
TOR_TYPE_TXT TYPE STRING,
TRANSSRVLVL_CODE_TXT TYPE STRING,
CUSTOMS_TXT TYPE STRING,
MOT_TXT TYPE STRING,
TRANSP_GRP_TXT TYPE STRING,
CARGO_TAKEOVER_TIME_TTT TYPE STRING,
CARGO_CUTOFF_TTT TYPE STRING,
CARGO_CUTOFF_CFS_TTT TYPE STRING,
CARGO_CUTOFF_POL_TTT TYPE STRING,
VESSEL_SAIL_DATE_TTT TYPE STRING,
EXP_TIME_ARRIVAL_TTT TYPE STRING,
FIRST_ACTIVITY_TTT TYPE STRING,
FIRST_STOP_ACC_END_TTT TYPE STRING,
FIRST_STOP_ACC_START_TTT TYPE STRING,
FIRST_STOP_REQ_END_TTT TYPE STRING,
FIRST_STOP_REQ_START_TTT TYPE STRING,
FIRST_STOP_APPOINTMENT_END_TTT TYPE STRING,
FIRST_STOP_APPOINTMENT_ST_TTT TYPE STRING,
FIRST_STOP_AGG_ASSGN_END_L_TTT TYPE STRING,
FIRST_STOP_AGG_ASSGN_ST_L_TTT TYPE STRING,
LAST_ACTIVITY_TTT TYPE STRING,
LAST_STOP_ACC_END_TTT TYPE STRING,
LAST_STOP_ACC_START_TTT TYPE STRING,
LAST_STOP_REQ_END_TTT TYPE STRING,
LAST_STOP_REQ_START_TTT TYPE STRING,
LAST_STOP_APPOINTMENT_END_TTT TYPE STRING,
LAST_STOP_APPOINTMENT_ST_TTT TYPE STRING,
LAST_STOP_AGG_ASSGN_END_L_TTT TYPE STRING,
LAST_STOP_AGG_ASSGN_ST_L_TTT TYPE STRING,
PLAN_TRANS_END_TTT TYPE STRING,
PLAN_TRANS_START_TTT TYPE STRING,
ARRIVAL_DATE_TTT TYPE STRING,
CHANGED_ON_TTT TYPE STRING,
CREATED_ON_TTT TYPE STRING,
DATETIME_BLK_EXE_TTT TYPE STRING,
DATETIME_BLK_INV_TTT TYPE STRING,
DATETIME_BLK_PLA_TTT TYPE STRING,
DLV_CONF_RCVD_ON_TTT TYPE STRING,
DLV_CREATED_ON_TTT TYPE STRING,
EST_MA_DATE_TTT TYPE STRING,
CARGO_CUTOFF_SRCGW_TTT TYPE STRING,
CARGO_CUTOFF_DSTGW_TTT TYPE STRING,
CUTOFF_CARR_VGM_TTT TYPE STRING,
INV_BLOCK_REASON_TXT TYPE STRING,
FIRST_STOP_LOG_LOC_UUID_LOCT TYPE STRING,
LAST_STOP_LOG_LOC_UUID_LOCT TYPE STRING,
PURCH_ORG_EXT_ID TYPE STRING,
PURCH_GRP_EXT_ID TYPE STRING,
EXEC_ORG_EXT_ID TYPE STRING,
EXEC_GRP_EXT_ID TYPE STRING,
EXEC_ORG_EXT_ID_PROP TYPE STRING,
FIRST_ACTIVITY_D TYPE STRING,
FIRST_ACTIVITY_T TYPE STRING,
FIRST_ACTIVITY_TZ TYPE STRING,
DOC_CHECK_STATUS_ICO TYPE STRING,
CROSS_DOC_CHECK_STATUS_ICO TYPE STRING,
DOC_CHECK_STATUS_TXT TYPE STRING,
CROSS_DOC_CHECK_STATUS_TXT TYPE STRING,
TOTAL_DISTANCE_UOM TYPE STRING,END OF T_EKKO_STR. DATA: WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_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_UI_POW_R_FB_MSTOP_STR-DB_KEY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_UUID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_LOG_LOC_UUID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_LOG_LOC_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_LOG_UNLOC_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_LOG_IATALOC_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_LOG_LOC_ADDRESSE sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_LOG_LOC_COUNTRY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_LOG_LOC_REGION sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_LOG_LOC_CITY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_LOG_LOC_ZIP sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_ADR_LOC_UUID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_ACC_START sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_REQ_START sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_REQ_END sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_ACC_END sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_APPOINTMENT_START sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_APPOINTMENT_END sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_AGGR_ASSGN_START_L sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_AGGR_ASSGN_END_L sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_ACTIVITY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_UUID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_LOG_LOC_UUID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_LOG_LOC_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_LOG_UNLOC_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_LOG_IATALOC_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_LOG_LOC_ADDRESSE sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_LOG_LOC_COUNTRY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_LOG_LOC_REGION sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_LOG_LOC_CITY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_LOG_LOC_ZIP sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_ADR_LOC_UUID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_ACC_START sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_REQ_START sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_REQ_END sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_ACC_END sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_APPOINTMENT_START sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_APPOINTMENT_END sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_AGGR_ASSGN_START_L sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_AGGR_ASSGN_END_L sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_ACTIVITY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-PLAN_TRANS_START sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-PLAN_TRANS_END sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-MTR sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-MOT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-MOT_CAT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-QUERY_NODE_DB_KEY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DISCREPANCY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TOR_CAT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TOR_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TOR_TYPE sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-BLOCK_REASON sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-ERROR_CATEGORY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-BLOCK_CAT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LABELTXT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DGO_INDICATOR sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DG_ADR_PTS_VAL sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DG_ADR_PTS_UNI sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DG_ADR_NO_EXEMPTION sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIXATION sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-AUTO_PLAN sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-BLK_PLAN sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-BLK_EXEC sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-BRC_PLAN sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-BRC_EXEC sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DATETIME_BLK_PLA sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-USER_ID_BLK_PLAN sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DATETIME_BLK_EXE sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-USER_ID_BLK_EXEC sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-EXEC_ORG_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-EXEC_GRP_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-PURCH_ORG_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-PURCH_GRP_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-ARCHIVING sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LIFECYCLE sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LC_COMP_SET_MAN sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-SHPM_TRANSM sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-PLAN_STATUS_ROOT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-COMPLIANCE sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DELIVERY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CREATED_BY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CREATED_ON sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CHANGED_BY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CHANGED_ON sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TSP sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-SHIPPERID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CONSIGNEEID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TSPID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-RESP_PERSON sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TRAFFIC_DIRECT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-RES_KEY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-SCHED_KEY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-SCHED_DEP sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TCC_AMT_NET_VAL sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TCC_AMT_NET_CUR sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TOT_DSO_AMT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TOT_DSO_CUR sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CONS_SAVINGS sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TOTAL_DISTANCE_KM sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TOTAL_DURATION_NET sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TOTAL_DURATION_GROSS sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DLV_GOODS_MVMNT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-GOODS_SUPPLIERID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DLV_GOODS_MVMNT_PROC_IND sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TCC_INV_STATUS sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TCC_CALC_STATUS sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TRQ_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-PARTNER_REF_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-PARTNER_MBL_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-PARTNER_MBL_RCVD sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-HBL_NUMBER sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-MANIFESTED sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TRANSSRVLVL_CODE sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-INV_BLOCK sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-INV_BLOCK_REASON sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DATETIME_BLK_INV sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-USER_ID_BLK_INV sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CONFIRMATION sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-SUBCONTRACTING sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CS_EXECUTED sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TEND_EXECUTED sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CUSTOMS sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-MAX_UTIL sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-MAX_UTIL_MASS sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-MAX_UTIL_VOLUME sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DENSITY_FACTOR sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-HANDLING_EXEC sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-WH_TRANSM_STATUS sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-BUYORIG_BTD_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-EXECUTION sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-ERP_SHPM_BTDID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-ERP_SHPM_LOGSYS sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-ERP_SHPM_TYPE sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_SHP_TRANSM sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_SHPM_TRANSM sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_UPD_BY_ERP sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-GRO_WEI sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-GRO_WEI_VAL sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-GRO_WEI_UNI sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-GRO_VOL sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-GRO_VOL_VAL sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-GRO_VOL_UNI sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-QUA_PCS sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-QUA_PCS_VAL sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-QUA_PCS_UNI sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LOGISTIC_STAT_TXT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DOC_CHECK_STATUS sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CROSS_DOC_CHECK_STATUS sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-VOYAGE_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-VESSEL_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-IMO_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-COUNTRY sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-MOT_ROOT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TOR_TYPE_TXT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TRANSSRVLVL_CODE_TXT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CUSTOMS_TXT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-MOT_TXT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TRANSP_GRP_TXT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CARGO_TAKEOVER_TIME_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CARGO_CUTOFF_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CARGO_CUTOFF_CFS_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CARGO_CUTOFF_POL_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-VESSEL_SAIL_DATE_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-EXP_TIME_ARRIVAL_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_ACTIVITY_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_ACC_END_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_ACC_START_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_REQ_END_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_REQ_START_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_APPOINTMENT_END_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_APPOINTMENT_ST_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_AGG_ASSGN_END_L_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_AGG_ASSGN_ST_L_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_ACTIVITY_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_ACC_END_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_ACC_START_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_REQ_END_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_REQ_START_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_APPOINTMENT_END_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_APPOINTMENT_ST_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_AGG_ASSGN_END_L_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_AGG_ASSGN_ST_L_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-PLAN_TRANS_END_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-PLAN_TRANS_START_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-ARRIVAL_DATE_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CHANGED_ON_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CREATED_ON_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DATETIME_BLK_EXE_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DATETIME_BLK_INV_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DATETIME_BLK_PLA_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DLV_CONF_RCVD_ON_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DLV_CREATED_ON_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-EST_MA_DATE_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CARGO_CUTOFF_SRCGW_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CARGO_CUTOFF_DSTGW_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CUTOFF_CARR_VGM_TTT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-INV_BLOCK_REASON_TXT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_STOP_LOG_LOC_UUID_LOCT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-LAST_STOP_LOG_LOC_UUID_LOCT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-PURCH_ORG_EXT_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-PURCH_GRP_EXT_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-EXEC_ORG_EXT_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-EXEC_GRP_EXT_ID sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-EXEC_ORG_EXT_ID_PROP sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_ACTIVITY_D sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_ACTIVITY_T sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-FIRST_ACTIVITY_TZ sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DOC_CHECK_STATUS_ICO sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CROSS_DOC_CHECK_STATUS_ICO sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-DOC_CHECK_STATUS_TXT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-CROSS_DOC_CHECK_STATUS_TXT sy-vline
WA_/SCMTMS/S_UI_POW_R_FB_MSTOP_STR-TOTAL_DISTANCE_UOM sy-vline INTO ld_text SEPARATED BY SPACE. *Add any further fields from structure WA_EKKO_STR you want to CONCATENATE... ENDLOOP. ENDFORM.