SAP Reports / Programs

RPUKST00 SAP ABAP Report - Check Cost Center Assignment







RPUKST00 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The report checks the cost centers assigned to employees in infotype Organizational assignment (0001)...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 RPUKST00 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 RPUKST00. "Basic submit
SUBMIT RPUKST00 AND RETURN. "Return to original report after report execution complete
SUBMIT RPUKST00 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Check Cost Center Assignment
Text Symbol: 001 = No controlling area for company code
Text Symbol: 002 = Invalid cost center
Text Symbol: 003 = No cost center assignment
Text Symbol: 010 = Pers.no.
Text Symbol: 011 = Employee name
Text Symbol: 012 = Start date
Text Symbol: 013 = End date
Text Symbol: 014 = Cost center
Text Symbol: 015 = Error description
Text Symbol: 016 = Position
Text Symbol: 020 = Change master data
Text Symbol: 021 = Change planning data
001 Pers.no. Name From To
002 Error text


INCLUDES used within this REPORT RPUKST00

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:

HRCA_CONTROLLINGAREA_FIND CALL FUNCTION 'HRCA_CONTROLLINGAREA_FIND' EXPORTING COMPANYCODE = P0001-BUKRS BUSINESSAREA = P0001-GSBER IMPORTING CONTRLAREA = RK_KOKRS EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.

HRCA_COSTCENTER_TEXT CALL FUNCTION 'HRCA_COSTCENTER_TEXT' EXPORTING CONTROLLINGAREA = RK_KOKRS COSTCENTER = P0001-KOSTL READ_DATE = P0001-BEGDA IMPORTING NAME = RK_KTEXT EXCEPTIONS NOTHING_FOUND = 1 OTHERS = 2.

HR_DISPLAY_BASIC_LIST CALL FUNCTION 'HR_DISPLAY_BASIC_LIST' EXPORTING BASIC_LIST_TITLE = MY_TITLE FILE_NAME = 'RPUKST00' * head_line1 = 'Fehlende Kostenstellenzuordnung' HEAD_LINE1 = TEXT-003 * HEAD_LINE2 = ' ' * FOOT_NOTE1 = ' ' * FOOT_NOTE2 = ' ' * FOOT_NOTE3 = ' ' * LAY_OUT = 0 DYN_PUSHBUTTON_TEXT1 = TEXT-020 "Stammdaten ändern DYN_PUSHBUTTON_TEXT2 = TEXT-021 "Planungsdaten ändern * DYN_PUSHBUTTON_TEXT3 = * DYN_PUSHBUTTON_TEXT4 = * DYN_PUSHBUTTON_TEXT5 = * DYN_PUSHBUTTON_TEXT6 = * DATA_STRUCTURE = ' ' * HEAD_LINE3 = ' ' * HEAD_LINE4 = ' ' CURRENT_REPORT = 'RPUKST00' LIST_LEVEL = '01' ADDITIONAL_OPTIONS = 'LINESELMODE:1;' * WORD_DOCUMENT = IMPORTING RETURN_CODE = RETURNCODE TABLES DATA_TAB = DATATAB FIELDNAME_TAB = FIELDNAMES SELECT_TAB = SELECTTAB * ERROR_TAB = EXCEPTIONS DOWNLOAD_PROBLEM = 1 NO_DATA_TAB_ENTRIES = 2 TABLE_MISMATCH = 3 PRINT_PROBLEMS = 4 OTHERS = 5.



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 RPUKST00 or its description.