SAP Reports / Programs | Payroll | Germany(PY-DE) SAP PY

RPMUSTD1 SAP ABAP Report - Model report for calling up HR ALV







RPMUSTD1 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Model report for calling up the HR-ALV ..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 RPMUSTD1 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 RPMUSTD1. "Basic submit
SUBMIT RPMUSTD1 AND RETURN. "Return to original report after report execution complete
SUBMIT RPMUSTD1 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Model report to Switch from HR-ALV to HCM APPLICATION LOG
Text Symbol: B01 = Block Test
Text Symbol: BU1 = @01@ Button 1
Text Symbol: L01 = List of personnel numbers


INCLUDES used within this REPORT RPMUSTD1

INCLUDE RPUNIVD0_INCLUDE.
INCLUDE RPMSELD0.


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:

HR_REFRESH_ERROR_LIST CALL FUNCTION 'HR_REFRESH_ERROR_LIST'.

HR_REFRESH_STAT_LIST CALL FUNCTION 'HR_REFRESH_STAT_LIST'.

HR_APPEND_STAT_LIST CALL FUNCTION 'HR_APPEND_STAT_LIST' EXPORTING selected = g_select_pernr processed = g_proces_pernr rejected = g_reject_pernr.

HR_ALV_LIST_DISPLAY * CALL FUNCTION 'HR_ALV_LIST_DISPLAY' * EXPORTING * data_structure = c_struct * current_report = c_repid * list_title = 'Liste der Personalnummern'(l01) * hr_display_error_list = 'X' * hr_display_stat_list = 'X' * callback_button1 = 'CB_BUTTON1' * text_button1 = g_button_text * variant = pa_varia * TABLES * data_tab = itab * EXCEPTIONS * OTHERS = 1.

HR_PAL_LOG_AND_ALV_DISPLAY CALL FUNCTION 'HR_PAL_LOG_AND_ALV_DISPLAY' EXPORTING i_s_display_profile = gs_display_profile i_s_flat_profile = gs_flat_profile * I_CALLBACK_PROGRAM = * I_CALLBACK_PF_STATUS_SET = * I_CALLBACK_USER_COMMAND = * I_CALLBACK_TOP_OF_PAGE = i_structure_name = c_struct * I_BACKGROUND_ID = i_grid_title = text-l01 * I_GRID_SETTINGS = * is_layout = * IT_FIELDCAT = * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = i_default = c_x i_save = c_a is_variant = gs_variant * IT_EVENTS = * IT_EVENT_EXIT = * IS_PRINT = * I_HTML_HEIGHT_TOP = * I_HTML_HEIGHT_END = * IT_ALV_GRAPHICS = * IT_HYPERLINK = * IT_ADD_FIELDCAT = * IT_EXCEPT_QINFO = * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES t_outtab = itab EXCEPTIONS program_error = 1 OTHERS = 2 .

HR_CE_FILL_ALV_ORG_STRUCTURE CALL FUNCTION 'HR_CE_FILL_ALV_ORG_STRUCTURE' EXPORTING p_p0001 = p0001 IMPORTING org_data = p_orgdata EXCEPTIONS no_entries = 1 * OTHERS = 2 .

HR_APPEND_ERROR_LIST CALL FUNCTION 'HR_APPEND_ERROR_LIST' EXPORTING pernr = pernr-pernr arbgb = sy-msgid msgty = 'E' msgno = sy-msgno msgv1 = sy-msgv1 msgv2 = sy-msgv2 msgv3 = sy-msgv3 msgv4 = sy-msgv4.



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