RPISTED0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for With the annual tax law for 2009, for all persons subject to tax with restrictions, an employment tax statement is to be created and sent to the clearing house...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 RPISTED0 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: P_MAPPE = Create Folder
Selection Text: P_MNAME = Folder Name
Selection Text: P_SPRDT = Lock Date
Selection Text: P_STICHT = Date Conversion
Title: Remove 'Lock ELSTER' Indicator
Text Symbol: P10 = Key Date for Convers.
Text Symbol: P20 = Batch Input
Text Symbol: S01 = Infotypes to Convert
Text Symbol: U01 = Name
Text Symbol: U02 = Start
Text Symbol: U03 = End
Text Symbol: U04 = Tax Liability
Text Symbol: U05 = Lock ELSTER
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
HR_MAPNAME_VERIFY CALL FUNCTION 'HR_MAPNAME_VERIFY' EXPORTING mapname = p_mname reportname = sy-repid IMPORTING mapname = p_mname EXCEPTIONS OTHERS = 1.
HR_REFRESH_STAT_LIST CALL FUNCTION 'HR_REFRESH_STAT_LIST'.
BDC_OPEN_GROUP CALL FUNCTION 'BDC_OPEN_GROUP' EXPORTING client = sy-mandt group = p_mname user = sy-uname keep = space holddate = p_sprdt.
BDC_INSERT CALL FUNCTION 'BDC_INSERT' EXPORTING tcode = 'PA30' "Transaktionscode TABLES dynprotab = _bdcdata.
BDC_CLOSE_GROUP CALL FUNCTION 'BDC_CLOSE_GROUP'.
HR_DISPLAY_BASIC_LIST CALL FUNCTION 'HR_DISPLAY_BASIC_LIST' EXPORTING basic_list_title = sy-title file_name = sy-repid current_report = sy-repid TABLES data_tab = p_umsetz fieldname_tab = _feldnamen error_tab = _error EXCEPTIONS download_problem = 1 no_data_tab_entries = 2 table_mismatch = 3 print_problems = 4 OTHERS = 5.
HR_EXTEND_STAT_LIST CALL FUNCTION 'HR_EXTEND_STAT_LIST' EXPORTING arbgb = 'RP' msgno = '016' msgv1 = text-s01 number = statistik-anzinf.
HR_APPEND_STAT_LIST CALL FUNCTION 'HR_APPEND_STAT_LIST' EXPORTING selected = statistik-selper processed = statistik-anzrel rejected = statistik-anzerr.
HR_DISPLAY_STAT_LIST CALL FUNCTION 'HR_DISPLAY_STAT_LIST' EXPORTING no_popup = 'X' no_empty_lines = 'X' linesize = 80 hidemsg = 'X'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.