MCDOKV10 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 MCDOKV10 into the relevant SAP transactions such as SE38 or SE80
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.
Title: Start SAPFTP in Register Mode
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
WS_QUERY call function 'WS_QUERY' exporting query = 'WS' importing return = wd_system.
WS_QUERY call function 'WS_QUERY' exporting environment = 'DISPLAY' query = 'EN' importing return = hostname exceptions others = 1.
WS_QUERY call function 'WS_QUERY' exporting environment = 'COMPUTERNAME' query = 'EN' importing return = hostname exceptions others = 1.
RFC_SYSTEM_INFO call function 'RFC_SYSTEM_INFO' importing rfcsi_export = rfcsi.
RFC_PING call function 'RFC_PING' destination hostname exceptions communication_failure = 1 exceptions system_failure = 2.
WS_EXECUTE call function 'WS_EXECUTE' exporting commandline = cmd program = 'sapftp' exceptions others = 1.
RFC_PING call function 'RFC_PING' destination hostname exceptions communication_failure = 1 exceptions system_failure = 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.