RPLCMP01 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Display Pay Grade Structure This report displays the pay grades and levels in your organization...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 RPLCMP01 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: VALIDDAT = Other date
Selection Text: S_SLTYP = D Pay grade type
Selection Text: S_SLREG = D Pay grade area
Selection Text: S_SLGRP = Salary group
Selection Text: S_MOLGA = Country grouping
Title: Display Pay Grade Structure
Text Symbol: SL2 = Other date
Text Symbol: SL1 = Today
Text Symbol: MOL = Country grouping
Text Symbol: FR2 = Other data
Text Symbol: FR1 = Key date
Text Symbol: 017 = Error during printing!
Text Symbol: 016 = Error during download!
Text Symbol: 015 = Error when outputing salary structure list!
Text Symbol: 014 = Error when outputing salary level list!
Text Symbol: 013 = List
Text Symbol: 012 = Choose a line
Text Symbol: 011 = Salary levels do not exist!
Text Symbol: 010 = Differential
Text Symbol: 009 = Range
Text Symbol: 008 = Pay Grade Levels
Text Symbol: 007 = Previous list
Text Symbol: 006 = Next list
Text Symbol: 005 = Average (level)
Text Symbol: 004 = Validity date:
Text Symbol: 003 = Max.eval.pts
Text Symbol: 002 = Min.eval.pts
Text Symbol: 001 = Reference (level)
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING * I_INTERFACE_CHECK = ' ' i_callback_program = repid * I_CALLBACK_PF_STATUS_SET = ' ' * I_CALLBACK_USER_COMMAND = i_callback_top_of_page = 'ALV_TOP_OF_PAGE' * I_CALLBACK_HTML_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_END_OF_LIST = ' ' * I_STRUCTURE_NAME = * I_BACKGROUND_ID = ' ' * I_GRID_TITLE = * I_GRID_SETTINGS = * IS_LAYOUT = it_fieldcat = fieldcatalog[] * IT_EXCLUDING = * IT_SPECIAL_GROUPS = it_sort = sortcat[] * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' I_SAVE = 'X' * IS_VARIANT = * IT_EVENTS = * IT_EVENT_EXIT = * IS_PRINT = * IS_REPREP_ID = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES t_outtab = disptable EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = lt_top_of_page.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.