RESHAU00 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 RESHAU00 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.
Connection Objects
Selection Text: NOCHANGE = Changes not permitted
Selection Text: HAUS = Connection object
Selection Text: ERNAM = First Entered By
Selection Text: ERDAT = Date of initial data entry
Selection Text: BEGRU = Authorization group
Selection Text: AENAM = Last changed by
Selection Text: AEDAT = Changed on
Selection Text: ADDRNUMB = Address number
Title: Evaluation of Connection Object
Text Symbol: N01 = Record was already locked
Text Symbol: 002 = hits
Text Symbol: 001 = Selection produced
002 Number Entrd Changed
001 Connection Object Address First EntryDate Last ChngDate AGrp DF
INCLUDE: IEOKCODE,
No SAP DATABASE tables are accessed within this REPORT code!
ISU_S_CONNOBJ_DISPLAY CALL FUNCTION 'ISU_S_CONNOBJ_DISPLAY' EXPORTING X_HAUS = IEHAU-HAUS X_UPD_ONLINE = 'X' X_NO_CHANGE = NOCHANGE X_NO_OTHER = 'X' IMPORTING Y_DB_UPDATE = UPDATED Y_NEW_EHAU = IEHAU.
ISU_S_CONNOBJ_CHANGE CALL FUNCTION 'ISU_S_CONNOBJ_CHANGE' EXPORTING X_HAUS = IEHAU-HAUS X_UPD_ONLINE = 'X' X_NO_OTHER = 'X' * x_no_dialog = * x_auto = * x_obj = IMPORTING Y_DB_UPDATE = UPDATED Y_NEW_EHAU = IEHAU * y_exit_type = EXCEPTIONS * not_found = 01 FOREIGN_LOCK = 02.
ISU_NAVIGATOR CALL FUNCTION 'ISU_NAVIGATOR' EXPORTING * X_OBJREF = X_OBJTYPE = CO_OBJTYPE_CONNOBJ X_OBJKEY = CONNOBJ * x_config = ' ' X_PRGCONTEXT = CO_STRUC_PRGCONTEXT X_SUBCONTEXT = CO_STRUC_SUBCONTEXT * X_FROM = SY-DATUM * X_TO = SY-DATUM * X_FILTER = ' ' EXCEPTIONS CONFIG_NOT_FOUND = 1 OBJECT_INVALID = 2 CONFIG_INVALID = 3 CANCELLED = 4 OTHERS = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.