REMIG_UPLOAD is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Upload migration data from local directory...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 REMIG_UPLOAD 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.
Upload migration data
Selection Text: NAME = Name of Import File
Selection Text: D_SERV = Output in Directory Dialog WP
Selection Text: D_ORGN = Use name of original
Title: Upload Local File and Generate Import File for Migration
Text Symbol: T02 = Output to File
Text Symbol: T01 = Notes
Text Symbol: 019 = Not saved
Text Symbol: 018 = Save Is Canceled
Text Symbol: 017 = Written
Text Symbol: 016 = Output File
Text Symbol: 015 = Do you want to overwrite?
Text Symbol: 014 = already exists
Text Symbol: 013 = File
Text Symbol: 012 = File Has Incorrect Cat.
Text Symbol: 011 = Error in Upload
Text Symbol: 010 = Select File
Text Symbol: 002 = If No Name Is Specified, the Standard Name Is Used
Text Symbol: 001 = Procedure: Start Report and Choose Local File
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ISU_M_FILE_GET_NAME CALL FUNCTION 'ISU_M_FILE_GET_NAME' EXPORTING x_title = ' Datei auswählen '(010) x_default_directory = temus-struc_pfad IMPORTING y_filename = lv_filename_in EXCEPTIONS action_cancelled = 1 OTHERS = 2.
GUI_UPLOAD CALL FUNCTION 'GUI_UPLOAD' EXPORTING filename = lv_filename_in TABLES data_tab = himp EXCEPTIONS OTHERS = 1.
ISU_M_FILE_CHECK CALL FUNCTION 'ISU_M_FILE_CHECK' DESTINATION temus-server EXPORTING x_path = temus-pfad x_file = out_name IMPORTING y_file_exist = file_exist EXCEPTIONS OTHERS = 1.
ISU_M_FILE_CHECK CALL FUNCTION 'ISU_M_FILE_CHECK' DESTINATION temus-server EXPORTING x_path = temus-pfad_back x_file = out_name IMPORTING y_file_exist = file_exist EXCEPTIONS OTHERS = 1.
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING diagnosetext1 = 'Die Datei'(013) diagnosetext2 = outfile diagnosetext3 = 'ist bereits vorhanden.'(014)
ISU_M_FILE_WRITE CALL FUNCTION 'ISU_M_FILE_WRITE' DESTINATION temus-server EXPORTING x_file = outfile TABLES xt_imp = himp EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
REMIG_UPLOAD - Upload Local File and Generate Import File for Migration REMIG_UPLOAD - Upload Local File and Generate Import File for Migration REMIG_SPLIT_SUBMIT - Split up a migration file and start import if necessary REMIG_SPLIT_SUBMIT - Split up a migration file and start import if necessary REMIG_REEGMM00_SPLIT - Distribution of Migration Data for Device Installation RIVA REMIG_REEGMM00_SPLIT - Distribution of Migration Data for Device Installation RIVA