SAP Reports / Programs

RDDPUT42 SAP ABAP Report - Analyze Inactive Objects During Merge







RDDPUT42 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.

If you would like to execute this report or see the full code listing simply enter RDDPUT42 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 RDDPUT42. "Basic submit
SUBMIT RDDPUT42 AND RETURN. "Return to original report after report execution complete
SUBMIT RDDPUT42 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: GP_MAP = Configuration
Title: Analyze Inactive Objects During Merge
Text Symbol: S01 = Period
Text Symbol: S02 = Object Selection


INCLUDES used within this REPORT RDDPUT42

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:

EMINT_F4_MAPNAME CALL FUNCTION 'EMINT_F4_MAPNAME' CHANGING CV_MAP = GP_MAP EXCEPTIONS OTHERS = 1.

EM_GET_INACTIVE_MERGE_OBJECTS CALL FUNCTION 'EM_GET_INACTIVE_MERGE_OBJECTS' EXPORTING IV_SREL = GP_SREL IV_EREL = GP_EREL IV_MAP = GP_MAP IV_LEVEL = LV_LEVEL TABLES ET_MERGEOBJ = GT_MERGEOBJ ET_MERGE = GT_MERGEH EXCEPTIONS EM_CUSTOMER_SYSTEM = 1 EM_COMMUNICATION_FAILURE = 2 OTHERS = 3.

RS_TREE_CONSTRUCT CALL FUNCTION 'RS_TREE_CONSTRUCT' TABLES NODETAB = GT_SNODE EXCEPTIONS TREE_FAILURE = 1 ID_NOT_FOUND = 2 WRONG_RELATIONSHIP = 3.

RS_TREE_EXPAND CALL FUNCTION 'RS_TREE_EXPAND' EXPORTING NODE_ID = GT_SNODE-ID.

RS_TREE_SET_CURRENT_LAYOUT CALL FUNCTION 'RS_TREE_SET_CURRENT_LAYOUT' EXPORTING CURSOR_COLUMN = 1 CURSOR_LINE = 1 * FIRST_NODE = 1 * FIRST_NODE_TYPE = ' ' LIST_COLUMN = 1 LIST_LINE = 1.

RS_TREE_LIST_DISPLAY CALL FUNCTION 'RS_TREE_LIST_DISPLAY' EXPORTING CALLBACK_PROGRAM = LV_PROGNAME CALLBACK_USER_COMMAND = LV_FORMNAME * CALLBACK_TEXT_DISPLAY = ' ' * CALLBACK_COLOR_DISPLAY = ' ' * CALLBACK_TOP_OF_PAGE = ' ' STATUS = 'OWN' CHECK_DUPLICATE_NAME = '0' * COLOR_OF_NODE = '4' * COLOR_OF_MARK = '3' * color_of_link = '1' * LOWER_CASE_SENSITIVE = ' ' * MODIFICATION_LOG = ' ' * NODE_LENGTH = 30 * TEXT_LENGTH = 75 * TEXT_LENGTH1 = 0 * TEXT_LENGTH2 = 0 * RETURN_MARKED_SUBTREE = ' ' * screen_start_column = 10 * screen_start_line = 5 * screen_end_column = 80 * screen_end_line = 30 * SUPPRESS_NODE_OUTPUT = ' ' IMPORTING F15 = SY-UCOMM.

SUBST_RELEASE_COMPARE call function 'SUBST_RELEASE_COMPARE' EXPORTING iv_rel1 = sy-saprl iv_rel2 = '45A' IMPORTING EV_COMPRESULT = lv_result.

SUBST_RELEASE_COMPARE call function 'SUBST_RELEASE_COMPARE' EXPORTING iv_rel1 = sy-saprl iv_rel2 = '46A' IMPORTING EV_COMPRESULT = lv_result.

POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING TEXTLINE1 = LV_TEXT TEXTLINE2 = LV_OBJNAME TITEL = 'Delete object' IMPORTING ANSWER = LV_ANSWER.

DD_OBJ_DEL CALL FUNCTION 'DD_OBJ_DEL' EXPORTING OBJECT_NAME = LV_OBJNAME OBJECT_TYPE = LV_OBJECT DEL_STATE = 'M'.



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