SAP Reports / Programs

RMPS_IMPORT_FILEPLAN SAP ABAP Report - Import Fileplan







RMPS_IMPORT_FILEPLAN 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 RMPS_IMPORT_FILEPLAN 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 RMPS_IMPORT_FILEPLAN. "Basic submit
SUBMIT RMPS_IMPORT_FILEPLAN AND RETURN. "Return to original report after report execution complete
SUBMIT RMPS_IMPORT_FILEPLAN VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Import Fileplan


INCLUDES used within this REPORT RMPS_IMPORT_FILEPLAN

INCLUDE: SBAL_CONSTANTS . " APPLICATION LOG


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:

BAL_LOG_CREATE CALL FUNCTION 'BAL_LOG_CREATE' EXPORTING i_s_log = ls_log IMPORTING e_log_handle = gv_log_handle EXCEPTIONS log_header_inconsistent = 1 OTHERS = 2.

BAL_LOG_EXCEPTION_ADD CALL FUNCTION 'BAL_LOG_EXCEPTION_ADD' EXPORTING i_log_handle = gv_log_handle i_s_exc = ls_exc EXCEPTIONS log_not_found = 0 OTHERS = 1.

BAL_LOG_MSG_ADD_FREE_TEXT CALL FUNCTION 'BAL_LOG_MSG_ADD_FREE_TEXT' EXPORTING i_log_handle = gv_log_handle i_msgty = lv_msgtyp i_text = uv_text EXCEPTIONS log_not_found = 1 msg_inconsistent = 2 log_is_full = 3 OTHERS = 4.

BAL_LOG_MSG_ADD CALL FUNCTION 'BAL_LOG_MSG_ADD' EXPORTING i_log_handle = gv_log_handle i_s_msg = ls_bal_msg EXCEPTIONS log_not_found = 1 msg_inconsistent = 2 log_is_full = 3 OTHERS = 4.

BAL_DSP_LOG_DISPLAY CALL FUNCTION 'BAL_DSP_LOG_DISPLAY'.

RMPS_POST_CREATE_SAPMAIL_API CALL FUNCTION 'RMPS_POST_CREATE_SAPMAIL_API' EXPORTING im_subject = lv_subject IMPORTING ex_send_request_id = lv_mail_id TABLES im_file_tab = lt_file ex_return_tab = lt_return im_mail_text = lt_txt.

RMPS_POST_CREATE_API CALL FUNCTION 'RMPS_POST_CREATE_API' EXPORTING im_doctype = lv_doctype im_no_path = 'X' im_orig_objtype = lv_orig_objtype im_orig_objkey = lv_orig_objkey * IM_FILE_ID = IMPORTING ex_doc_id = lv_docid ex_doc_class = lv_docclass * EX_PATHID = ex_rejected_properties = lt_prop_rej ex_pdir_id = lv_pdir_id * EX_DOCID = ex_return = ls_return * TABLES * im_tab_properties = lt_prop .

RMPS_POST_CHANGE_PROPS_API CALL FUNCTION 'RMPS_POST_CHANGE_PROPS_API' EXPORTING im_objectid = lv_bapi_docid im_documentclass = lv_bapi_docclass * IM_WHOLE_DOCUMENT = ' ' * IM_DOC_CONTEXT = im_set_val_for_dynamic_attr = lv_set_val_for_dynamic_attr IMPORTING ex_return = ls_return TABLES tab_properties = lt_prop_bapi * TAB_PROPS_DELETE = .



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