RCATSTAL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Time Sheet: Transfer to Target Components The report RCATSTAL transfers time sheet data records from the interface tables to the target components HR, CO, PS, and PM/CS...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 RCATSTAL into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CATA - Transfer to Target Components
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: AUFNR = Order (PM/CS)
Selection Text: BELNR = Document no. (CO/PM/CS/PS)
Selection Text: CO = Controlling
Selection Text: DIRECT = Direct transfer mode (HR)
Selection Text: HR = Human Resources
Selection Text: NPLNR = Network (PS)
Selection Text: PARDATE = Transfer w/o dates (PS)
Selection Text: PARLCNT = No. lock attempts (PM/CS/PS)
Selection Text: PARLIST = Log (HR/PM/CS/PS)
Selection Text: PARTASK = Number of tasks (PM/CS/PS)
Selection Text: PARTEST = Test run
Selection Text: PM = Plant maintenance/Cust.service
Selection Text: PPNRCO = Personnel number in CO doc.
Selection Text: PS = Project System
Selection Text: PWARN = Ignore warnings (CO)
Selection Text: P_BUDAT = Posting date (CO/PM/CS/PS)
Selection Text: REPEAT = Repeat transfer (HR)
Selection Text: S_BUDAT = Post. date for cancel. (PM/PS)
Title: Time Sheet: Transfer to Target Components
Text Symbol: 004 = More Selection Options
Text Symbol: 003 = Control Parameters
Text Symbol: 002 = Posting Date
Text Symbol: 001 = Target Components
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RH_APPLICATION_SYSTEM_CHECK CALL FUNCTION 'RH_APPLICATION_SYSTEM_CHECK' IMPORTING APPLICATION_SYSTEM_TYPE = SYSTEM_TYPE.
GET_PRINT_PARAMETERS CALL FUNCTION 'GET_PRINT_PARAMETERS' EXPORTING MODE = 'CURRENT' NO_DIALOG = 'X' REPORT = 'RPTEXTPT' IMPORTING OUT_PARAMETERS = PARAMS VALID = VALID.
CATS_TRANSFER_HR CALL FUNCTION 'CATS_TRANSFER_HR' EXPORTING TESTLAUF = PARTEST PROTOKOL = PARLIST OUT_PARAMS = PARAMS REPEAT_TRANSFER = REPEAT "YIK DIRECT = DIRECT "Hinweis 459607 TABLES PERNR = SEL_PERNR DATE = SEL_DATE EXCEPTIONS NO_AUTHORITY = 1 OTHERS = 2.
GET_PRINT_PARAMETERS CALL FUNCTION 'GET_PRINT_PARAMETERS' EXPORTING MODE = 'CURRENT' NO_DIALOG = 'X' REPORT = 'RCATSTCO' IMPORTING OUT_PARAMETERS = PARAMS VALID = VALID.
CATS_TRANSFER_CO CALL FUNCTION 'CATS_TRANSFER_CO' EXPORTING POSTINGDATE = P_BUDAT OUT_PARAMS = PARAMS WARNING = PWARN TESTRUN = PARTEST PERNR_CO = PPNRCO "Hinweis 308473 TABLES PERNR = SEL_PERNR DATE = SEL_DATE BELNR = BELNR EXCEPTIONS NO_AUTHORITY = 1 OTHERS = 2.
GET_PRINT_PARAMETERS CALL FUNCTION 'GET_PRINT_PARAMETERS' EXPORTING MODE = 'CURRENT' NO_DIALOG = 'X' REPORT = 'RCATSTPM' IMPORTING OUT_PARAMETERS = PARAMS VALID = VALID.
CATS_TRANSFER_PM CALL FUNCTION 'CATS_TRANSFER_PM' EXPORTING POSTINGDATE = P_BUDAT STORNODATE = S_BUDAT TESTLAUF = PARTEST PROTOKOL = PARLIST PARLCNT = PARLCNT OUT_PARAMS = PARAMS PARTASK = PARTASK TABLES PERNR = SEL_PERNR DATE = SEL_DATE AUFNR = AUFNR BELNR = BELNR EXCEPTIONS NO_AUTHORITY = 1 OTHERS = 2.
GET_PRINT_PARAMETERS CALL FUNCTION 'GET_PRINT_PARAMETERS' EXPORTING MODE = 'CURRENT' NO_DIALOG = 'X' REPORT = 'RCATSTPS' IMPORTING OUT_PARAMETERS = PARAMS VALID = VALID.
CATS_TRANSFER_PS CALL FUNCTION 'CATS_TRANSFER_PS' EXPORTING POSTINGDATE = P_BUDAT STORNODATE = S_BUDAT TESTLAUF = PARTEST PROTOKOL = PARLIST PARLCNT = PARLCNT * parhour = parhour PARDATE = PARDATE OUT_PARAMS = PARAMS PARTASK = PARTASK TABLES PERNR = SEL_PERNR DATE = SEL_DATE NPLNR = NPLNR BELNR = BELNR EXCEPTIONS NO_AUTHORITY = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RCATSTAL - Time Sheet: Transfer to Target Components RCATSTAL - Time Sheet: Transfer to Target Components RCATSRIF - Reorganize Time Sheet Interface Tables RCATSRIF - Reorganize Time Sheet Interface Tables RCATSRCO - CATS: Check and Reorganize Table CATSCO RCATSRCO - CATS: Check and Reorganize Table CATSCO