RPCSTTD0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use this report to display an extract of the tax table for Germany...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 RPCSTTD0 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: BRUTTO = D Tax Gross Amount
Selection Text: DATUM = Key date
Selection Text: KEINZ = Do Not Use Additional Table
Selection Text: KGEBIET = D Church tax area
Selection Text: KINDERFB = D Tax Exemptions for Children
Selection Text: PERFB = D Personal Exemption
Selection Text: RELIGION = D Religion
Selection Text: STEUERKL = D Tax class
Selection Text: STEUERPF = Tax liability
Selection Text: STUFEN = D Number of Table Levels
Selection Text: TABELLE = D Tax Table
Selection Text: ZEITRAUM = D Payroll Period
Title: Display Part of Tax Table (G)
Text Symbol: T26 = No Known Currency
Text Symbol: T25 = No item found in table t001C.
Text Symbol: T24 = No entry found in table T001P
Text Symbol: T23 = No entry found in table T001.
Text Symbol: T22 = No entry found in table T001P
Text Symbol: T06 = Reunif.Tax
Text Symbol: T05 = Church tax
Text Symbol: T04 = Rec. (%)
Text Symbol: T03 = Empl.tax
Text Symbol: T02 = Gross To
Text Symbol: T01 = Display Part of Tax Table (G)
Text Symbol: E01 = Enter a Valid Value (Y/M/D)
Text Symbol: E02 = Enter a Valid Value (1/2)
Text Symbol: E03 = Enter a valid value (A/B)
Text Symbol: E04 = Area is not encrypted in table T5D2L
Text Symbol: E05 = No Valid Record Exists in Table T5D2H.
Text Symbol: E06 = No Valid Employm. Tax Formula Has Been Entered in Table T596F for
Text Symbol: E07 = Error in the Input Parameters
Text Symbol: E08 = Tax Exemptions for Children Not Allowed in Tax Class
Text Symbol: E09 = No. Tax Exemptns f.Children Not Divisible by 0.5
Text Symbol: E12 = Error with Output with HR Display Basic List
Text Symbol: E20 = Enter a Positive Value
Text Symbol: H01 = Tax class
Text Symbol: H02 = Table
Text Symbol: H03 = Year Table
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RP_GET_CURRENCY CALL FUNCTION 'RP_GET_CURRENCY' EXPORTING MOLGA = '01' * TRFAR = * TRFGB = * TRFKZ = BEGDA = $DATE IMPORTING WAERS = $WAERS EXCEPTIONS MOLGA_NOT_IN_T001P = 1 NO_ENTRY_FOUND_IN_TABLE_T001 = 2 NO_ENTRY_FOUND_IN_TABLE_T500P = 3 NO_ENTRY_FOUND_IN_TABLE_T500C = 4 OTHERS = 5.
HR_DISPLAY_BASIC_LIST CALL FUNCTION 'HR_DISPLAY_BASIC_LIST' EXPORTING FILE_NAME = MYREPORT HEAD_LINE1 = HEADER1 HEAD_LINE2 = HEADER2 HEAD_LINE3 = HEADER3 HEAD_LINE4 = HEADER4 LAY_OUT = 0 CURRENT_REPORT = MYREPORT TABLES DATA_TAB = TAB FIELDNAME_TAB = FIELDNAMES EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.