RM06EESF 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 RM06EESF into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
OMQ5 - Edit PO Transfer File
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: LDS_NAME = Logical file name
Title: Analysis of Exported Purchase Orders
Text Symbol: 001 = Data of file &
Text Symbol: 002 = Save data file?
Text Symbol: 003 = Data changed
Text Symbol: 004 = Y
Text Symbol: 005 = No
Text Symbol: 006 = Save?
Text Symbol: 021 = Header
Text Symbol: 022 = Item
INCLUDE RM06EEDA.
No SAP DATABASE tables are accessed within this REPORT code!
FILE_GET_NAME CALL FUNCTION 'FILE_GET_NAME' EXPORTING logical_filename = lds_name IMPORTING file_name = phy_filename EXCEPTIONS file_not_found = 01.
BI_EDIT_DATA CALL FUNCTION 'BI_EDIT_DATA' EXPORTING list_title = title alter_allowed = alter_allowed create_tables_statement = x nodata_sign = nodata TABLES disp_data = datedit CHANGING data_altered = altered EXCEPTIONS no_tables_statement = 1 OTHERS = 2.
POPUP_TO_DECIDE CALL FUNCTION 'POPUP_TO_DECIDE' "#EC * EXPORTING defaultoption = '1' textline2 = text-002 textline1 = text-003 text_option1 = text-004 text_option2 = text-005 titel = text-006 IMPORTING answer = antwort 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.