RN1SHELP 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 RN1SHELP 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: BAUMTX = Tree Description
Selection Text: BAUMID = Tree Identification
Title: Tree Structure Maintenance
Text Symbol: 008 = Warning: Data is not saved
Text Symbol: 010 = Do you still want to exit?
Text Symbol: 011 = Backup check
Text Symbol: E01 = Specify Tree Identification or Description
Text Symbol: E02 = Specify Tree Identification and Description
Text Symbol: E03 = Specify Tree Identification
Text Symbol: 007 = >>> Enter description <<<
Text Symbol: 001 = Selection:
Text Symbol: 002 = Display
Text Symbol: 003 = Change
Text Symbol: 004 = Create
Text Symbol: 005 = Maintain Tree Structures
Text Symbol: 006 = Selectable
Text Symbol: E11 = tree ID
Text Symbol: E12 = F4 - Structure tree not created yet
Text Symbol: E13 = Specify only one tree structure
Text Symbol: E10 = Enter a clear description for the
Text Symbol: E04 = Specify Tree Description
Text Symbol: E05 = Specify tree description for
Text Symbol: E06 = each identification number
Text Symbol: E07 = Specify an ID number
Text Symbol: E08 = for each tree description
Text Symbol: E09 = is already created
INCLUDE MNDATA00.
No SAP DATABASE tables are accessed within this REPORT code!
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_display TEXT = text-002 INFO = text-002 ADD_STDINF = 'X' IMPORTING RESULT = baumaz.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_change TEXT = text-003 INFO = text-003 ADD_STDINF = 'X' IMPORTING RESULT = bauman.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_create TEXT = text-004 INFO = text-004 ADD_STDINF = 'X' IMPORTING RESULT = baumnw.
ISHMED_SHELP CALL FUNCTION 'ISHMED_SHELP' EXPORTING style = 'A' ebene = 1 TABLES rbaumid = rbaumid rbaumtx = rbaumtx EXCEPTIONS not_found = 1 OTHERS = 2.
ISHMED_SHELP CALL FUNCTION 'ISHMED_SHELP' EXPORTING style = 'C' ebene = 1 TABLES rbaumid = rbaumid rbaumtx = rbaumtx EXCEPTIONS not_found = 1 OTHERS = 2.
ISHMED_SHELP CALL FUNCTION 'ISHMED_SHELP' EXPORTING style = 'N' ebene = 1 TABLES rbaumid = rbaumid rbaumtx = rbaumtx EXCEPTIONS 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.