SAP Reports / Programs

RP_MSS_OADP_UPDATE_BUFFER SAP ABAP Report - Object and Data Provider Buffer Update for Managers







RP_MSS_OADP_UPDATE_BUFFER is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You use this report to prepopulate the Object and Data Provider (OADP) buffer used by the Manager Self-Service (MSS) application...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 RP_MSS_OADP_UPDATE_BUFFER 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 RP_MSS_OADP_UPDATE_BUFFER. "Basic submit
SUBMIT RP_MSS_OADP_UPDATE_BUFFER AND RETURN. "Return to original report after report execution complete
SUBMIT RP_MSS_OADP_UPDATE_BUFFER 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: P_TL = Threshold
Selection Text: P_PERNR = Personnel Number
Selection Text: P_PD = PD Infotypes
Selection Text: P_PA = PA Infotypes
Selection Text: P_OWB = Overwrite Buffer
Selection Text: P_ORGT = Org. View for Threshold
Selection Text: P_ORG = Org. View
Selection Text: P_ID = Root Organization ID
Selection Text: P_EP = Evaluation Path
Selection Text: P_CD = Change Document
Selection Text: P_BCK = Submit Background Job
Selection Text: P_ADM = Run with Admin. Authorization
Title: Object and Data Provider Buffer Update for Managers
Text Symbol: 017 = Data View
Text Symbol: 016 = Run with User Authorization
Text Symbol: 015 = Run Mode
Text Symbol: 014 = Submit Background Job for Manager
Text Symbol: 013 = PD Infotype
Text Symbol: 012 = PA Infotype
Text Symbol: 011 = Status
Text Symbol: 010 = User Name
Text Symbol: 009 = Object and Data Provider Buffer Update for Managers
Text Symbol: 008 = Organizational View
Text Symbol: 007 = Job Name
Text Symbol: 006 = Personnel Number
Text Symbol: 005 = Update Changes Since Last Run
Text Symbol: 004 = Manager Selection
Text Symbol: 003 = OADP Organizational View Selection
Text Symbol: 002 = Update Buffer


INCLUDES used within this REPORT RP_MSS_OADP_UPDATE_BUFFER

INCLUDE RP_MSS_OADP_UPDATE_BUFFER_TOP.
INCLUDE RP_MSS_OADP_UPDATE_BUFFER_S01.


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:

RH_GET_ACTIVE_WF_PLVAR CALL FUNCTION 'RH_GET_ACTIVE_WF_PLVAR' IMPORTING act_plvar = p_plvar EXCEPTIONS OTHERS = 0.

JOB_OPEN CALL FUNCTION 'JOB_OPEN' EXPORTING jobname = lv_jname IMPORTING jobcount = lv_jobcount.

JOB_CLOSE CALL FUNCTION 'JOB_CLOSE' EXPORTING jobcount = lv_jobcount jobname = lv_jname strtimmed = 'X' IMPORTING job_was_released = lv_result EXCEPTIONS cant_start_immediate = 1 invalid_startdate = 2 jobname_missing = 3 job_close_failed = 4 job_nosteps = 5 job_notex = 6 lock_failed = 7 invalid_target = 8 OTHERS = 9.

REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = lv_repid it_fieldcat = lt_temp_fcat i_save = 'A' is_layout = ls_layout TABLES t_outtab = lt_item EXCEPTIONS program_error = 1 OTHERS = 2.

REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = lv_repid it_fieldcat = lt_temp_fcat is_layout = ls_layout i_save = 'A' TABLES t_outtab = lt_logs_al EXCEPTIONS program_error = 1 OTHERS = 2.

RH_OBJID_REQUEST CALL FUNCTION 'RH_OBJID_REQUEST' EXPORTING plvar = p_plvar otype = p_otype TABLES sel_objects = sel_objects EXCEPTIONS OTHERS = 0.



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