HTRARG01 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 HTRARG01 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: S_SSKNO = WC SSK no.selection interval
Selection Text: P_SSKNO = SSK No
Selection Text: P_SCRIPT = SmartForm name
Selection Text: P_PERIO = Period
Title: R&D notification form
Text Symbol: N08 = N.cance
Text Symbol: N11 = Other
Text Symbol: N15 = Orig
Text Symbol: N16 = Top
Text Symbol: N17 = Sub
Text Symbol: N18 = By personal field/subfield
Text Symbol: N19 = By SSK number
Text Symbol: N40 = Report working base choice
Text Symbol: N41 = Personal field and subfiel
Text Symbol: N42 = SSK no.
Text Symbol: N47 = By SSK base
Text Symbol: N48 = Under SSK base
Text Symbol: N49 = Above SSK base
Text Symbol: N50 = All
Text Symbol: NAM = Company title
Text Symbol: P13 = No entry in $ table for $ argument
Text Symbol: PBE = PeAl PeAA
Text Symbol: SSN = SSK number
Text Symbol: TBT = Day Amount
Text Symbol: TMO = TaMo
Text Symbol: TTN = TTF no.
Text Symbol: N07 = Cance
Text Symbol: ADI = Nam
Text Symbol: ADR = Address
Text Symbol: BUL = Employee on vacat.on the 1.day of next per.>12 mont
Text Symbol: E00 = Personnel no. :
Text Symbol: E01 = The imported version of the set
Text Symbol: E02 = Not actual
Text Symbol: E03 = The imported vers.:
Text Symbol: E04 = Actual version of the sets
Text Symbol: E05 = CD set not found
Text Symbol: E06 = No entry with sequen.no.in tables RGDIR and DIR2
Text Symbol: E07 = Inconsistence between set list and paycheck inquiry
INCLUDE PCFVPTR0.
INCLUDE RPC2CD09.
INCLUDE RPPPXD10. "COMMON PART BUFFER PCL1/PCL2
INCLUDE PAARGTRD.
INCLUDE PAARGTRS.
INCLUDE PAARGTR1.
INCLUDE PAFHETRY.
INCLUDE PAFHETRZ.
INCLUDE PAPHSTRL.
No SAP DATABASE tables are accessed within this REPORT code!
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.
RP_LAST_DAY_OF_MONTHS CALL FUNCTION 'RP_LAST_DAY_OF_MONTHS' EXPORTING day_in = h_begda IMPORTING last_day_of_month = h_endda.
SSF_FUNCTION_MODULE_NAME CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME' EXPORTING formname = p_script IMPORTING fm_name = fm_name EXCEPTIONS no_form = 1 no_function_module = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.