RHALEORIGLIST is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for List of Original Systems for HR Objects This report enables you to list the original systems of HR objects...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 RHALEORIGLIST into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
RE_RHALEORIGLIST - HR: Orig.System List - Planning Data
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: SEL = Original system
Selection Text: NOT_REG = only incorrect
Title: HR: List Original Systems for Planning Data
Text Symbol: SPB = Selection screen for applicants
Text Symbol: SPA = Selection screen for employees
Text Symbol: ORI = Original system
INCLUDE RHALEDAT.
No SAP DATABASE tables are accessed within this REPORT code!
RH_CHECK_ORIG_IS_ACTIVE CALL FUNCTION 'RH_CHECK_ORIG_IS_ACTIVE' IMPORTING orig_is_active = orig_is_active reppa_is_set = other_selections.
RH_GET_ACTIVE_WF_PLVAR CALL FUNCTION 'RH_GET_ACTIVE_WF_PLVAR' EXPORTING ask_plvar_dialog = ' ' IMPORTING act_plvar = act_plvar.
RH_APPLICATION_SYSTEM_CHECK CALL FUNCTION 'RH_APPLICATION_SYSTEM_CHECK' EXCEPTIONS OTHERS = 1.
RS_SET_SELSCREEN_STATUS CALL FUNCTION 'RS_SET_SELSCREEN_STATUS' EXPORTING p_status = sy-pfkey TABLES p_exclude = excl_tab.
RH_OTYPE_HAS_ORIGINAL CALL FUNCTION 'RH_OTYPE_HAS_ORIGINAL' EXPORTING otype = pchotype EXCEPTIONS otype_not_relevant = 1 OTHERS = 2.
RH_OTYPE_HAS_ORIGINAL CALL FUNCTION 'RH_OTYPE_HAS_ORIGINAL' EXPORTING otype = objec-otype EXCEPTIONS otype_not_relevant = 1 OTHERS = 2.
RH_LIST_ORIGINAL_SYSTEMS_B CALL FUNCTION 'RH_LIST_ORIGINAL_SYSTEMS_B' EXPORTING begda = pchbegda endda = pchendda not_reg = not_reg CHANGING objects = alvtab sel_origsystem = sel[].
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RHALEORIGLIST - HR: List Original Systems for Planning Data RHALEORIGLIST - HR: List Original Systems for Planning Data RHALEORIGINIT_EMPLOYEE - HR: Initialization of Original Systems for Employees RHALEORIGINIT_EMPLOYEE - HR: Initialization of Original Systems for Employees RHALEORIGINIT_APPLICANT - HR: Initialization of Original Systems for Applicants RHALEORIGINIT_APPLICANT - HR: Initialization of Original Systems for Applicants