SAP Reports / Programs | Migration | SAP Utilities | Migration(IS-U-TO-MI) SAP IS

REMIG_UPLOAD SAP ABAP Report - Upload Local File and Generate Import File for Migration







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT REMIG_UPLOAD. "Basic submit
SUBMIT REMIG_UPLOAD AND RETURN. "Return to original report after report execution complete
SUBMIT REMIG_UPLOAD VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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


INCLUDES used within this REPORT REMIG_UPLOAD

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

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 REMIG_UPLOAD or its description.