SAP Reports / Programs | Basis Components | Basis Services / Communication Interfaces | Geographical Functions(BC-SRV-GEO) SAP BC

UPLOAD_ZIP5GOLD_DATABASE SAP ABAP Report - Program UPLOAD_ZIP5GOLD_DATABASE







UPLOAD_ZIP5GOLD_DATABASE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.

If you would like to execute this report or see the full code listing simply enter UPLOAD_ZIP5GOLD_DATABASE 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 UPLOAD_ZIP5GOLD_DATABASE. "Basic submit
SUBMIT UPLOAD_ZIP5GOLD_DATABASE AND RETURN. "Return to original report after report execution complete
SUBMIT UPLOAD_ZIP5GOLD_DATABASE VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Program UPLOAD_ZIP5GOLD_DATABASE
Text Symbol: 001 = You want to import the ZIP5Gold database into the SAP System.
Text Symbol: 002 = Do you want to remove the old data from the system ('YES')
Text Symbol: 003 = or add it to the new data ('NO') (not recommended)?
Text Symbol: 004 = Answer with 'YES' or 'NO'. 'CANCEL' terminates the
Text Symbol: 005 = program without changing the data.
Text Symbol: 006 = Upload ZIP5Gold Database


INCLUDES used within this REPORT UPLOAD_ZIP5GOLD_DATABASE

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:

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING PERCENTAGE = 0 TEXT = 'Uploading data...'. "#EC NOTEXT

UPLOAD CALL FUNCTION 'UPLOAD' EXPORTING FILENAME = filename FILETYPE = 'ASC' "#EC NOTEXT SILENT = 'X' "#EC NOTEXT TABLES data_tab = lt_line EXCEPTIONS CONVERSION_ERROR = 1 INVALID_TABLE_WIDTH = 2 INVALID_TYPE = 3 NO_BATCH = 4 UNKNOWN_ERROR = 5 GUI_REFUSE_FILETRANSFER = 6 OTHERS = 7.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING PERCENTAGE = 100 TEXT = 'Upload finished...'. "#EC NOTEXT

POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING DEFAULTOPTION = 'Y' DIAGNOSETEXT1 = 'Info1'(001) DIAGNOSETEXT2 = 'Info2'(002) DIAGNOSETEXT3 = 'Info3'(003) TEXTLINE1 = 'Frage1'(004) TEXTLINE2 = 'Frage2'(005) TITEL = 'Upload der ZIP5Gold Datenbank'(006) * START_COLUMN = 25 * START_ROW = 6 CANCEL_DISPLAY = 'X' IMPORTING ANSWER = lv_answer.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING PERCENTAGE = 0 TEXT = 'Flush'. "#EC NOTEXT

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING PERCENTAGE = l_percent TEXT = l_tempstr.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING PERCENTAGE = 0 TEXT = 'Final flush...'. "#EC NOTEXT



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