RHSHOWOR 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 RHSHOWOR into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
PFSO - User's Organizational Environment
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: S_OBJID = User name
Title: Display of Organizational Assignment
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RH_GET_ACTIVE_WF_PLVAR CALL FUNCTION 'RH_GET_ACTIVE_WF_PLVAR' EXPORTING ASK_PLVAR_DIALOG = ' ' IMPORTING ACT_PLVAR = S_PLVAR EXCEPTIONS NO_ACTIVE_PLVAR = 01.
RH_SHOW_TASK_PROFILE CALL FUNCTION 'RH_SHOW_TASK_PROFILE' EXPORTING INP_PLVAR = S_PLVAR INP_OTYPE = S_OTYPE INP_OBJID = S_OBJID INP_ISTAT = '1' * " INP_SVECT = '1' * " INP_BEGDA = SY-DATUM * " INP_ENDDA = 99991231 * " INP_MAINT = ' ' * " INP_START_COLUMN = 0 * " INP_START_LINE = 0 * " INP_END_COLUMN = 0 * " INP_END_LINE = 0 EXCEPTIONS OBJECT_NOT_FOUND = 01 OBJECTTYPE_NOT_ALLOWED = 02.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.