SAP Reports / Programs

RPLTRF00 SAP ABAP Report - Time spent in each pay scale area/type/group/level







RPLTRF00 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Time spent in each pay scale area/type/group/level This report allows you to display the pay scale classification and the duration of an assignment to a pay scale or level for individual employees...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 RPLTRF00 into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RPLTRF00. "Basic submit
SUBMIT RPLTRF00 AND RETURN. "Return to original report after report execution complete
SUBMIT RPLTRF00 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: T-STUFE = Pay scale level
Selection Text: T-GRUPPE = Pay scale group
Selection Text: T-GEBIET = Pay Scale Area
Selection Text: T-ART = Pay scale type
Title: Time spent in each pay scale area/type/group/level
Text Symbol: YEA = Years
Text Symbol: STT = Key date:
Text Symbol: SEI = since
Text Symbol: NAM = Name
Text Symbol: MON = Months
Text Symbol: MIT = Employees
Text Symbol: ER5 = Error list :
Text Symbol: ER2 = For personnel number $, entry $ is missing from table T001P
Text Symbol: ER1 = HR name editing incomplete for personnel number $
Text Symbol: DUR = Time spent in pay scale group/level
Text Symbol: DIE = The report includes
002 (highlighted: more than 3 years) Ar Ty Group Lv (Date ) Years
001 Pers.no. Name Pay scale class. ---- Since -----


INCLUDES used within this REPORT RPLTRF00

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

HRCM_TIME_PERIOD_CALCULATE CALL FUNCTION 'HRCM_TIME_PERIOD_CALCULATE' EXPORTING begda = seit endda = pn-endda IMPORTING noyrs = dau_j_x nomns = dau_m_x EXCEPTIONS invalid_dates = 1 overflow = 2 OTHERS = 3.

COMPUTE_YEARS_BETWEEN_DATES * CALL FUNCTION 'COMPUTE_YEARS_BETWEEN_DATES' * EXPORTING * FIRST_DATE = SEIT * SECOND_DATE = PN/ENDDA * MODIFY_INTERVAL = ' ' * IMPORTING * YEARS_BETWEEN_DATES = DA.

HR_DISPLAY_BASIC_LIST CALL FUNCTION 'HR_DISPLAY_BASIC_LIST' "XSCK056989 EXPORTING " basic_list_title = text-dur " * FILE_NAME = SY-REPID "XPSK025405 file_name = repid "XPSK025405 head_line1 = t_datum " head_line2 = mitarb "N363752 * foot_note1 = mitarb "N363752 * FOOT_NOTE2 = ' ' " * FOOT_NOTE3 = ' ' " * LAY_OUT = 0 "0-2,5 * DYN_PUSHBUTTON_TEXT1 = " * DYN_PUSHBUTTON_TEXT2 = " * DYN_PUSHBUTTON_TEXT3 = " * DYN_PUSHBUTTON_TEXT4 = " * DYN_PUSHBUTTON_TEXT5 = " * DYN_PUSHBUTTON_TEXT6 = " * DATA_STRUCTURE = ' ' "->DD-Bezug * HEAD_LINE3 = ' ' " * HEAD_LINE4 = ' ' " CURRENT_REPORT = repid "N0427005 * LIST_LEVEL = ' ' "if layout=2 * ADDITIONAL_OPTIONS = ' ' " * WORD_DOCUMENT = " IMPORTING " return_code = retcode " TABLES " data_tab = tc_tab " fieldname_tab = fieldnames " * SELECT_TAB = selects " error_tab = errors " EXCEPTIONS " download_problem = 1 " no_data_tab_entries = 2 " table_mismatch = 3 " print_problems = 4 " OTHERS = 5. "XSCK056989



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RPLTRF00 or its description.