RGCHRY00 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program displays the hierarchies of subgroups...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RGCHRY00 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
GC4P - FI-LC Print Step-Consolidated Group
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: P_KZ = Additional information
Selection Text: P_PERID = Period
Selection Text: P_RSUBD = Subgroup
Selection Text: P_RVERS = Version
Selection Text: P_RYEAR = Fiscal year
Title: Print Subgroup Hierarchy
Text Symbol: 100 = Additional information
Text Symbol: 101 = If this field is marked, in addition to the subgroups
Text Symbol: 102 = the rollup company, the level and the version are displayed.
Text Symbol: 105 = Subgroup :
Text Symbol: 106 = Version :
Text Symbol: 107 = Year/Period :
Text Symbol: 108 = Subgroup / Company
Text Symbol: 109 = Rollup
Text Symbol: 110 = Level
Text Symbol: 111 = Version
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_INFORM * CALL FUNCTION 'POPUP_TO_INFORM' * EXPORTING * TITEL = TEXT-100 * TXT1 = TEXT-101 * TXT2 = TEXT-102.
RS_TREE_LIST_DISPLAY * CALL FUNCTION 'RS_TREE_LIST_DISPLAY' * EXPORTING * CALLBACK_PROGRAM = 'RGCHRY00' * CALLBACK_USER_COMMAND = 'AT_USER_COMMAND' * CALLBACK_TOP_OF_PAGE = 'AT_TOP_OF_PAGE'.
RS_TREE_CONSTRUCT * CALL FUNCTION 'RS_TREE_CONSTRUCT' * TABLES * NODETAB = I_NODE * EXCEPTIONS * TREE_FAILURE = 01 * ID_NOT_FOUND = 02 * WRONG_RELATIONSHIP = 03.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.