HTROGI06 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 HTROGI06 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
INCLUDE RPC2CD09.
INCLUDE RPPPXD10. " COMMON PART BUFFER PCL1/PCL2
INCLUDE PAFHETRY.
INCLUDE PAFHETRZ.
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 begda = h_fpbeg IMPORTING waers = h_cur EXCEPTIONS OTHERS.
CURRENCY_CONVERTING_FACTOR CALL FUNCTION 'CURRENCY_CONVERTING_FACTOR' EXPORTING currency = h_cur IMPORTING factor = c_fact.
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.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING defaultoption = 'N' titel = $titel1 textline1 = $titel2 textline2 = $titel3 IMPORTING answer = h_yesno.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING defaultoption = 'N' titel = 'Update ?'(c01) textline1 = 'Yes Y - Enter.'
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING defaultoption = 'N' titel = 'Update PA0772 ?'(t01) textline1 = 'Yes Y - Enter.'
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING dyname = hlp_repid dynumb = sy-dynnr TABLES dynpfields = xdynpfields.
CONVERSION_EXIT_TRPER_INPUT CALL FUNCTION 'CONVERSION_EXIT_TRPER_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.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.