RV56TRTR is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report, in itself, has no functionality...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RV56TRTR into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: P_UAREG = D Act. check-in time
Selection Text: P_UALEN = D Act. load. end time
Selection Text: P_UALBG = D Act.load.start time
Selection Text: P_TPLST = D Transportation planning point
Selection Text: P_TPBEZ = D Description of shipment
Selection Text: P_TEXT4 = D Addit.text 4
Selection Text: P_GESZTA = D Actual total time
Selection Text: P_DALEN = D Act. loading end
Selection Text: P_DALBG = D Act. loading start
Selection Text: P_BFART = D Service Level
Selection Text: P_ADD04 = D Suppl. 4
Selection Text: P_ADD03 = D Suppl. 3
Selection Text: P_ADD02 = D Suppl. 2
Selection Text: P_ADD01 = D Suppl. 1
Selection Text: P_FRKRL = D Shipment costs relevance
Selection Text: P_FAHZTD = D Planned actual duration
Selection Text: P_FAHZTA = D Actual duration
Selection Text: P_EXTI2 = D External ID 2
Selection Text: P_EXTI1 = D External ID 1
Selection Text: P_EXSTR = Execute leg determination
Selection Text: P_ERZET = D Time
Selection Text: P_ERDAT = D Created on
Selection Text: P_DTDIS = D Scheduling end
Selection Text: P_DTABF = D ActShpmtCmpletDate
Selection Text: P_DPTEN = D Planned shipment end
Selection Text: P_DPTBG = D Planned shipment start
Selection Text: P_DPREG = D Planned check-in date
Selection Text: P_DPLEN = D Planned load. end
Selection Text: P_DPLBG = D Planned load. start
Selection Text: P_DPABF = D Planned shpmt compl. date
Selection Text: P_DISTZ = D Distance
Selection Text: P_DATEN = D ActualShipmentEnd
Selection Text: P_DATBG = D Actual shipment start
Selection Text: P_DAREG = D Actual check-in date
Selection Text: P_SHTYP = D Shipment type
Selection Text: P_SDABW = D Special processing indicator
Selection Text: P_ROUTE = D Shipment route
Selection Text: P_MEDST = D UoM - distance
INCLUDE RV56BUFF.
No SAP DATABASE tables are accessed within this REPORT code!
SD_SHIPMENT_HEADER_DESCRIPTION CALL FUNCTION 'SD_SHIPMENT_HEADER_DESCRIPTION' EXPORTING i_xvttk = g_new_xvttk CHANGING c_txt_planning_point = d_tplst c_txt_shipment_type = d_shtyp * c_txt_processing_type = d_abfer * c_txt_process_control = d_abwst c_txt_service_level = d_bfart c_txt_shipping_type = d_vsart c_txt_ship_typ_prel = d_vsavl c_txt_ship_typ_subs = d_vsanl * c_txt_leg_indicator = d_laufk c_txt_shipping_cond = d_vsbed c_txt_route = d_route c_txt_carrier = d_tdlnr * c_txt_overall_status = d_sttrg c_txt_special_processing = d_sdabw c_txt_pricing_procedure = d_kkalsm c_icon_overall_status = icon_all c_txt_add_info_1 = d_add01 c_txt_add_info_2 = d_add02 c_txt_add_info_3 = d_add03 c_txt_add_info_4 = d_add04 c_icon_shipping_type = l_icon_shipping_type c_icon_ship_typ_prel = l_icon_ship_typ_prel c_icon_ship_typ_subs = l_icon_ship_typ_subs EXCEPTIONS OTHERS = 0.
RS_EXTERNAL_SELSCREEN_STATUS CALL FUNCTION 'RS_EXTERNAL_SELSCREEN_STATUS' EXPORTING p_fb = 'SD_SHIPMENT_PRF_SET_GUI_DIALOG' EXCEPTIONS OTHERS = 0.
RS_EXTERNAL_SELSCREEN_STATUS CALL FUNCTION 'RS_EXTERNAL_SELSCREEN_STATUS' EXPORTING p_fb = 'SD_SHIPMENT_PRF_SET_GUI_DISPLY' EXCEPTIONS OTHERS = 0.
RS_VARIANT_CONTENTS CALL FUNCTION 'RS_VARIANT_CONTENTS' EXPORTING REPORT = 'RV56TRTR' VARIANT = i_variant TABLES L_PARAMS_NONV = L_PARAMS_NONV VALUTAB = L_VALUTAB EXCEPTIONS VARIANT_NON_EXISTENT = 1 VARIANT_OBSOLETE = 2 OTHERS = 3. "^_n_642144
SD_SHIPMENT_HEADER_CHECK CALL FUNCTION 'SD_SHIPMENT_HEADER_CHECK' EXPORTING i_xvttk = vttkvb opt_check_all = ' ' opt_check_document_category = ' ' opt_check_shipment_type = g_check_shtyp opt_check_planning_point = g_check_tplst opt_check_route = g_check_route opt_check_shipping_type = g_check_vsart opt_check_shipping_condition = g_check_vsbed opt_check_service_level = g_check_bfart opt_check_carrier = g_check_tdlnr opt_check_add = g_check_add opt_check_date_time_status = g_check_dates IMPORTING e_error_fieldname = l_error_fieldname EXCEPTIONS OTHERS = 99.
HELP_DOCU_SHOW_FOR_FIELD CALL FUNCTION 'HELP_DOCU_SHOW_FOR_FIELD' EXPORTING fieldname = 'RV56TR_HLP' tabname = 'RV56_VT04'.
READ_TABLE_BUFFERED CALL FUNCTION 'READ_TABLE_BUFFERED' EXPORTING i_table = transp_planning_point-tablename i_key1 = transp_planning_point-key1 i_value1 = i_tplst IMPORTING e_table_workarea = l_ttds EXCEPTIONS OTHERS = 1.
READ_TABLE_BUFFERED CALL FUNCTION 'READ_TABLE_BUFFERED' EXPORTING i_table = vendor-tablename i_key1 = vendor-key1 i_value1 = i_tdlnr IMPORTING e_table_workarea = l_lfa1 EXCEPTIONS OTHERS = 1.
SD_SHIPMENT_PRF_DIALOGMODE_GET CALL FUNCTION 'SD_SHIPMENT_PRF_DIALOGMODE_GET' IMPORTING e_dialog_mode = g_dialog_mode.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.
This will then be available for everyone to easily find by simply searching on the report name RV56TRTR or its description.
RV56TRTR - VT04: Maintain data that is to be included in the shipment RV56TRTR - VT04: Maintain data that is to be included in the shipment RV56TRST - Start of List of Shipments (as F4 help, transport.planning list etc.) RV56TRST - Start of List of Shipments (as F4 help, transport.planning list etc.) RV56TRSP - Definition of separat.criteria, capacity limits, and sort sequences RV56TRSP - Definition of separat.criteria, capacity limits, and sort sequences