SAP Reports / Programs

RNUCHREA SAP ABAP Report - IS-H SG: Specify Change Reasons for Data Modifications by User







RNUCHREA is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for By means of this program you maintain the reasons for modifications to data in the IS-H that were made by your users...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 RNUCHREA into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RNUCHREA. "Basic submit
SUBMIT RNUCHREA AND RETURN. "Return to original report after report execution complete
SUBMIT RNUCHREA VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_TEST = Test Run
Selection Text: P_REASON = Reason for Change
Selection Text: P_FALNR = Case
Selection Text: P_EPROC = EDI Procedure
Selection Text: P_EINRI = Institution
Selection Text: P_DIRINS = Update Immediately
Title: IS-H SG: Specify Change Reasons for Data Modifications by User
Text Symbol: U05 = Parameter
Text Symbol: U01 = Institution
Text Symbol: U00 = EDI Procedure
Text Symbol: T20 = Change Reasons
Text Symbol: T05 = New Reas.
Text Symbol: T04 = Old Reas.
Text Symbol: T03 = Case
Text Symbol: T02 = EDI P
Text Symbol: T01 = Inst.


INCLUDES used within this REPORT RNUCHREA

INCLUDE MNCDATA0.
INCLUDE MNCOLOUR.
INCLUDE RNCIEDIP.
INCLUDE RNCIEDII.
INCLUDE RNSSSPBO.
INCLUDE RNCIEDIU.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

ISH_AUTH_CHECK_REPORT_EINRI CALL FUNCTION 'ISH_AUTH_CHECK_REPORT_EINRI' EXPORTING repid = rnstat-repid einri = p_einri * NO_MESSAGE = ' ' IMPORTING rc = auth_rc EXCEPTIONS OTHERS = 1.

ISH_CALL_LIST_HEAD CALL FUNCTION 'ISH_CALL_LIST_HEAD' EXPORTING * ausbegdt = rnstat-ausbegdt * ausenddt = rnstat-ausenddt einri = rnstat-einri line_size = rnstat-line_size repid = rnstat-repid title_lin1 = text-t20 title_lin2 = ' ' uline = on * verbegdt = init_date * verenddt = init_date EXCEPTIONS invalid_einri = 01.

ISH_F4_HELP_CASENO CALL FUNCTION 'ISH_F4_HELP_CASENO' EXPORTING dyname = dyname dynumb = dynumb institution_fname = dynp_key IMPORTING institution = einri caseno = falnr EXCEPTIONS OTHERS = 1.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RNUCHREA or its description.