HTROGI03 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 HTROGI03 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.
Selection Text: LISTE = List of payroll records
Selection Text: SELABKRS = Display Payroll subunit of for-period
Selection Text: SELFPBEG = Display Beginning of for-period
Selection Text: SELFPEND = Display End of for-period
Selection Text: SELFPPER = Display For-period
Selection Text: SELINPER = Display In-period
Selection Text: SELIPERM = Display Period modifier for in-period
Selection Text: SELPERNR = Display Personnel number
Selection Text: SELSRTZA = Display Status
Selection Text: STAND = Status indicator
Selection Text: TAB_AUSW = Choose individual tables
Title: Payroll Results for Cluster RX
Text Symbol: E01 = The imported version of the cluster
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RP_LAST_DAY_OF_MONTHS CALL FUNCTION 'RP_LAST_DAY_OF_MONTHS' EXPORTING day_in = h_fpbeg IMPORTING last_day_of_month = h_fpend.
RP_GET_CURRENCY CALL FUNCTION 'RP_GET_CURRENCY' EXPORTING molga = calcmolga IMPORTING waers = h_curr EXCEPTIONS OTHERS.
HELP_VALUES_GET_WITH_TABLE CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE' EXPORTING fieldname = 'LGART' IMPORTING select_value = lgart TABLES fields = ihelp_fields valuetab = helptab.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = hlp_repid dynumb = sy-dynnr TABLES dynpfields = xdynpfields.
CONVERSION_EXIT_PTR01_INPUT CALL FUNCTION 'CONVERSION_EXIT_PTR01_INPUT' EXPORTING input = xdynpfields-fieldvalue IMPORTING output = monat.
POPUP_TO_SELECT_MONTH CALL FUNCTION 'POPUP_TO_SELECT_MONTH' EXPORTING actual_month = monat IMPORTING selected_month = monat return_code = returncode.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING defaultoption = 'N' titel = 'Update ?'(c01) textline1 = 'Yes Y - Enter.'(c02)
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.