ROIUGT_UPLOAD 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 ROIUGT_UPLOAD into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
O3UGT_ICON_MAINT - Bitmap/Flashform Maintenance
O3UGT_ICON_UPLOAD - Upload Upstream Graphics Bitmaps
O3UH_FLASH_UPLOAD - Upload Reporting Flashforms
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_MAINT = Bitmap/Flashform Maintenance
Selection Text: P_UPBMP = Upload Bitmaps
Selection Text: P_UPDOT = Upload Flashforms
Title: Bitmap/Flashform Maintenance
Text Symbol: 000 = Delete Log
Text Symbol: 004 = deleted succesfully
Text Symbol: 005 = Error deleting
Text Symbol: 006 = uploaded succesfully
Text Symbol: 007 = was NOT uploaded due to error
Text Symbol: 008 = Confirm
Text Symbol: 009 = Are you sure you want to delete the selected files?
Text Symbol: S01 = Select bitmaps to upload
Text Symbol: S02 = Select flashforms to upload
Text Symbol: S03 = Please specify at least one file
Text Symbol: S04 = Error calling file open dialog, rc =
Text Symbol: S05 = Bitmap Files (*.BMP)|*.BMP|
Text Symbol: S06 = Flashform Files (*.DOT)|*.DOT|
Text Symbol: T01 = Upload Bitmaps
Text Symbol: T02 = Upload Flashforms
Text Symbol: T03 = Bitmap/Flashform Maintenance
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
IGN_TABLECONTROL_PAGING CALL FUNCTION 'IGN_TABLECONTROL_PAGING' "JSU EXPORTING code = lf_ok_code counter = gf_table_control_lines top_line = tb_main-top_line total_line = tb_main-lines IMPORTING first_line = tb_main-top_line.
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = lf_title text_question = lf_question default_button = '2' display_cancel_button = space popup_type = 'ICON_MESSAGE_WARNING' IMPORTING answer = lf_answer EXCEPTIONS text_not_found = 1 OTHERS = 2.
BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = lf_log IMPORTING e_log_handle = lf_log_handle EXCEPTIONS log_header_inconsistent = 1 OTHERS = 2.
BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = lf_log_handle i_s_msg = lf_msg EXCEPTIONS log_not_found = 1 msg_inconsistent = 2 log_is_full = 3 OTHERS = 4.
BAL_DSP_PROFILE_POPUP_GET CALL FUNCTION 'BAL_DSP_PROFILE_POPUP_GET' IMPORTING e_s_display_profile = lf_profile.
BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY' EXPORTING i_s_display_profile = lf_profile EXCEPTIONS profile_inconsistent = 1 internal_error = 2 no_data_available = 3 no_authority = 4 OTHERS = 5.
BAL_LOG_REFRESH CALL FUNCTION 'BAL_LOG_REFRESH' EXPORTING i_log_handle = lf_log_handle EXCEPTIONS log_not_found = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.