Report to import a ZIP file, containing the cofiles and data parts of a transport request. Related reports:
https://nocin.eu/abap-download-transport-as-zip/
https://nocin.eu/abap-create-toc-for-a-given-transport-release-it-and-download-it-as-zip/
This report can be handy, especially since S/4HANA 2023 seems to have restricted the “classic” import way by using TCode CG3Y and CG3Z. See note 1949906, where it is recommended to create a custom report.
001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 048 049 050 051 052 053 054 055 056 057 058 059 060 061 062 063 064 065 066 067 068 069 070 071 072 073 074 075 076 077 078 079 080 081 082 083 084 085 086 087 088 089 090 091 092 093 094 095 096 097 098 099 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | *&---------------------------------------------------------------------* *& Report Z_IMPORT_TRANSPORT_FROM_ZIP *&---------------------------------------------------------------------* *& *&---------------------------------------------------------------------* REPORT z_import_transport_from_zip. SELECTION - SCREEN BEGIN OF BLOCK bl02 WITH FRAME TITLE TEXT-t02. PARAMETERS p_lcldir TYPE string LOWER CASE OBLIGATORY DEFAULT 'C:\temp\'. PARAMETERS p_sapdir TYPE char255 LOWER CASE OBLIGATORY . SELECTION - SCREEN END OF BLOCK bl02. SELECTION - SCREEN BEGIN OF BLOCK bl03 WITH FRAME . PARAMETERS p_import TYPE boolean DEFAULT 'X' AS CHECKBOX . SELECTION - SCREEN END OF BLOCK bl03. AT SELECTION - SCREEN OUTPUT . CALL 'C_SAPGPARAM' ID 'NAME' FIELD 'DIR_TRANS' ID 'VALUE' FIELD p_sapdir. AT SELECTION - SCREEN ON VALUE - REQUEST FOR p_lcldir. DATA lt_files TYPE filetable. DATA lv_rc TYPE i. DATA lv_action TYPE i. TRY . cl_gui_frontend_services=>file_open_dialog( EXPORTING window_title = 'Import' default_extension = '.zip' initial_directory = 'C:\temp\' multiselection = abap_false CHANGING file_table = lt_files rc = lv_rc user_action = lv_action ). IF lv_action = cl_gui_frontend_services=>action_ok AND lines ( lt_files ) > 0. p_lcldir = lt_files[ 1 ]-filename. ENDIF . CATCH cx_root INTO DATA (e_text). MESSAGE e_text->get_text( ) TYPE 'I' . ENDTRY . START-OF-SELECTION . DATA lv_zip_size TYPE i. DATA lt_zip_data TYPE solix_tab. DATA lv_xstring TYPE xstring. cl_gui_frontend_services=>gui_upload( EXPORTING filename = p_lcldir filetype = 'BIN' IMPORTING filelength = lv_zip_size CHANGING data_tab = lt_zip_data ). CALL FUNCTION 'SCMS_BINARY_TO_XSTRING' EXPORTING input_length = lv_zip_size IMPORTING buffer = lv_xstring TABLES binary_tab = lt_zip_data. " write zip content to filesystem DATA (lo_zipper) = NEW cl_abap_zip( ). DATA (lt_zip_entries) = lo_zipper->splice( lv_xstring ). lo_zipper-> load ( lv_xstring ). LOOP AT lt_zip_entries INTO DATA (ls_zip_entry). lo_zipper-> get ( EXPORTING name = ls_zip_entry-name IMPORTING content = DATA (lv_data) ). DATA (lv_file) = COND #( WHEN ls_zip_entry-name(1) = 'K' THEN p_sapdir && '/cofiles/' && ls_zip_entry-name ELSE p_sapdir && '/data/' && ls_zip_entry-name ). TRY . OPEN DATASET lv_file FOR OUTPUT IN BINARY MODE . TRANSFER lv_data TO lv_file. CLOSE DATASET lv_file. CATCH cx_root INTO DATA (e_text). MESSAGE e_text->get_text( ) TYPE 'E' . ENDTRY . ENDLOOP . " now add transport to stms DATA lv_ret_code TYPE trretcode. DATA ls_exception TYPE stmscalert. DATA lt_logptr TYPE TABLE OF tplogptr. DATA lt_stdout TYPE TABLE OF tpstdout. DATA (lv_trkorr) = CONV trkorr( lt_zip_entries[ 1 ]-name+8(3) && 'K' && lt_zip_entries[ 1 ]-name+1(6) ). DATA (lv_system) = CONV tmssysnam( sy-sysid ). SELECT SINGLE domnam FROM tmscsys INTO @ DATA (lv_transport_domain). " add transport to queue CALL FUNCTION 'TMS_MGR_FORWARD_TR_REQUEST' EXPORTING iv_request = lv_trkorr iv_tarcli = sy-mandt iv_target = lv_system iv_source = lv_system iv_tardom = lv_transport_domain iv_srcdom = lv_transport_domain IMPORTING ev_tp_ret_code = lv_ret_code es_exception = ls_exception TABLES tt_stdout = lt_stdout EXCEPTIONS OTHERS = 99. IF sy-subrc <> 0 OR lv_ret_code <> 0. cl_demo_output=>display( lt_stdout ). MESSAGE 'Could not add transport to queue' TYPE 'E' . ENDIF . " also directly import if checked IF p_import = abap_true . CALL FUNCTION 'TMS_MGR_IMPORT_TR_REQUEST' EXPORTING iv_system = lv_system iv_request = lv_trkorr iv_client = sy-mandt iv_ignore_cvers = abap_true "ignore invalid component version vector (CVERS) IMPORTING ev_tp_ret_code = lv_ret_code es_exception = ls_exception TABLES tt_logptr = lt_logptr tt_stdout = lt_stdout EXCEPTIONS read_config_failed = 1 table_of_requests_is_empty = 2 OTHERS = 3. IF sy-subrc <> 0 OR lv_ret_code <> 0. cl_demo_output=>display( lt_stdout ). MESSAGE 'Could not import transport' TYPE 'E' . ENDIF . ENDIF . MESSAGE 'Transport successfully imported' TYPE 'S' . |