SAP Reports / Programs

RP_MSS_CONVERT_MDT_TO_LPD_CUST SAP ABAP Report - To Convert MDT Entries to LPD_CUST entries







RP_MSS_CONVERT_MDT_TO_LPD_CUST is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for With this report, you can create entries for a reporting launchpad or a completely new reporting launchpad from an existing Manager's Desktop (MDT) scenario...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_CONVERT_MDT_TO_LPD_CUST 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_CONVERT_MDT_TO_LPD_CUST. "Basic submit
SUBMIT RP_MSS_CONVERT_MDT_TO_LPD_CUST AND RETURN. "Return to original report after report execution complete
SUBMIT RP_MSS_CONVERT_MDT_TO_LPD_CUST 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_ALIAS = D .
Selection Text: P_DESCR = Launchpad Description
Selection Text: P_INST = Launchpad Instance
Selection Text: P_ROLE = Launchpad Role
Selection Text: P_SCEN = MDT Scenario
Title: To Convert MDT Entries to LPD_CUST entries
Text Symbol: 001 = Role and Instance already exist.It will be modified.Do you want to continue?
Text Symbol: 002 = Role and Instance has been created in the Launchpad.Do you want to go to launchpad?
Text Symbol: 004 = Role and Instance has been modified in the Launchpad.Do you want to go to launchpad?
Text Symbol: T01 = Select MDT scenario to convert


INCLUDES used within this REPORT RP_MSS_CONVERT_MDT_TO_LPD_CUST

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:

HRWPC_RPT_FCODES_READ CALL FUNCTION 'HRWPC_RPT_FCODES_READ' EXPORTING im_scenario = p_scen TABLES fcode_definition = lt_fcode_definition fcode_hierarchy = lt_fcode_hierarchy EXCEPTIONS nothing_found = 1 internal_error = 2 OTHERS = 3.

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = text-001 display_cancel_button = '' IMPORTING answer = lv_answer EXCEPTIONS text_not_found = 1 OTHERS = 2.

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = text-002 display_cancel_button = '' IMPORTING answer = lv_answer EXCEPTIONS text_not_found = 1 OTHERS = 2.

POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING text_question = text-004 display_cancel_button = '' IMPORTING answer = lv_answer EXCEPTIONS text_not_found = 1 OTHERS = 2.

APB_LPD_SHOW_LAUNCHPAD CALL FUNCTION 'APB_LPD_SHOW_LAUNCHPAD' EXPORTING ID_ROLE = p_role ID_INSTANCE = p_inst * ID_UNAME = ID_GUI_MODE = 'DISPLAY' EXCEPTIONS LAUNCHPAD_READ_ERROR = 1 OTHERS = 2 .



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