RKCWINEX 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 RKCWINEX 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.
Selection Text: FILE = Execute file
Selection Text: PROG = Executable program
Selection Text: REG_KEY = Registry key
Selection Text: REG_SECT = Registry section
Title: Start program on presentation server
Text Symbol: F4F = Execute file
Text Symbol: F4P = Executable program
Text Symbol: PRG = Call up program with path description:
Text Symbol: REG = Call up program with registry description:
Text Symbol: TIT = Execute Program
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 ENVIRONMENT = ' ' FILENAME = ' ' QUERY = 'WS' WINID = ' ' IMPORTING RETURN = OPERATING_SYSTEM EXCEPTIONS INV_QUERY = 01.
WS_FILENAME_GET CALL FUNCTION 'WS_FILENAME_GET' EXPORTING DEF_FILENAME = FILE DEF_PATH = ' ' MASK = ',*.*,*.*.'
WS_FILENAME_GET CALL FUNCTION 'WS_FILENAME_GET' EXPORTING DEF_FILENAME = FILE DEF_PATH = ' ' MASK = ',*.*,*.exe.'
REGISTRY_GET CALL FUNCTION 'REGISTRY_GET' EXPORTING KEY = REG_KEY SECTION = REG_SECT IMPORTING VALUE = REG_RETURN.
WS_EXECUTE CALL FUNCTION 'WS_EXECUTE' EXPORTING COMMANDLINE = G_FILE PROGRAM = PROG INFORM = ' '.
POPUP_DISPLAY_TEXT CALL FUNCTION 'POPUP_DISPLAY_TEXT' EXPORTING POPUP_TITLE = TEXT-TIT TEXT_OBJECT = 'RKCWINEX_TXT01' EXCEPTIONS TEXT_NOT_FOUND = 1 OTHERS = 2.
REGISTRY_GET CALL FUNCTION 'REGISTRY_GET' EXPORTING KEY = L_EXT * section = ' ' IMPORTING VALUE = L_REG_KEY EXCEPTIONS OTHERS = 1.
REGISTRY_GET CALL FUNCTION 'REGISTRY_GET' EXPORTING KEY = 'protocol\StdFileEditing\server' SECTION = L_REG_KEY IMPORTING VALUE = E_PROG EXCEPTIONS OTHERS = 1.
REGISTRY_GET CALL FUNCTION 'REGISTRY_GET' EXPORTING KEY = 'shell\open\command' SECTION = L_REG_KEY IMPORTING VALUE = L_PROG 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.