SAP Reports / Programs

RSDMDD_MOVE_FROM_MD_TABLE SAP ABAP Report - Packetized Deleting of Master Data from Table







RSDMDD_MOVE_FROM_MD_TABLE 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 RSDMDD_MOVE_FROM_MD_TABLE 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 RSDMDD_MOVE_FROM_MD_TABLE. "Basic submit
SUBMIT RSDMDD_MOVE_FROM_MD_TABLE AND RETURN. "Return to original report after report execution complete
SUBMIT RSDMDD_MOVE_FROM_MD_TABLE 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_IOBJNM = Name of InfoObject
Selection Text: P_LOG = Write Log Entries
Selection Text: P_LOGHDL = Log Handle
Selection Text: P_SIMUL = Simulation
Selection Text: P_TABMNE = Mnemonic Tables
Selection Text: P_TABNM = Table Name
Selection Text: P_UCTAB = Where-Used List Name
Title: Packetized Deleting of Master Data from Table
Text Symbol: 001 = Error Reading Data Records to be Saved
Text Symbol: 002 = Error Saving a Data Record
Text Symbol: 003 = Error Determining the Number of Data Records
Text Symbol: 004 = Error Loading the Data Records to be Recovered
Text Symbol: 005 = Error Writing the Data Records to be Recovered
Text Symbol: 006 = Error Saving the Initial Data Record


INCLUDES used within this REPORT RSDMDD_MOVE_FROM_MD_TABLE

INCLUDE RSDMDD_DEL_PROG_PARAMS.
INCLUDE RSDMDD_LOG_DB_STATEMENT.


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:

DB_COMMIT CALL FUNCTION 'DB_COMMIT'.

DB_COMMIT CALL FUNCTION 'DB_COMMIT'.

DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = i_tabname state = 'M' " read the newest version IMPORTING gotstate = l_gotstate EXCEPTIONS illegal_input = 1 OTHERS = 2.

RRSI_VAL_SID_SINGLE_CONVERT CALL FUNCTION 'RRSI_VAL_SID_SINGLE_CONVERT' EXPORTING i_iobjnm = rsd_c_dpanm-iobjnm i_chavl = p_iobjnm IMPORTING e_sid = l_sid EXCEPTIONS no_sid = 1 chavl_not_allowed = 2 chavl_not_figure = 3 chavl_not_plausible = 4 x_message = 5 interval_not_found = 6 foreign_lock = 7 inherited_error = 8 OTHERS = 9.

DDIF_TABL_GET CALL FUNCTION 'DDIF_TABL_GET' EXPORTING name = p_tabnm state = 'M' " read the newest version IMPORTING dd02v_wa = l_s_dd02v dd09l_wa = l_s_dd09v TABLES dd03p_tab = l_t_dd03p dd05m_tab = l_t_dd05m dd08v_tab = l_t_dd08v dd12v_tab = l_t_dd12v dd17v_tab = l_t_dd17v dd35v_tab = l_t_dd35v dd36m_tab = l_t_dd36m EXCEPTIONS illegal_input = 1 OTHERS = 2.

DDIF_TABL_PUT CALL FUNCTION 'DDIF_TABL_PUT' EXPORTING name = i_temp_tabname dd02v_wa = l_s_dd02v dd09l_wa = l_s_dd09v TABLES dd03p_tab = l_t_dd03p dd05m_tab = l_t_dd05m dd08v_tab = l_t_dd08v dd35v_tab = l_t_dd35v dd36m_tab = l_t_dd36m EXCEPTIONS tabl_not_found = 1 name_inconsistent = 2 tabl_inconsistent = 3 put_failure = 4 put_refused = 5 OTHERS = 6.

DDIF_TABL_ACTIVATE CALL FUNCTION 'DDIF_TABL_ACTIVATE' EXPORTING name = i_temp_tabname EXCEPTIONS not_found = 1 put_failure = 2 OTHERS = 3.

DDIF_OBJECT_DELETE CALL FUNCTION 'DDIF_OBJECT_DELETE' EXPORTING type = 'TABL' name = i_tabname EXCEPTIONS illegal_input = 1 no_authority = 2 OTHERS = 3.

DD_DATABASE_UTILITY CALL FUNCTION 'DD_DATABASE_UTILITY' EXPORTING fct = 'MDF' " activate and delete obj_name = i_tabname obj_type = 'TABL' EXCEPTIONS unexpected_error = 1 unsupported_function = 2 unsupported_obj_type = 3 table_is_locked_by_tcnv = 4 authority_check_failed = 5 abort_function = 6 conversion_error = 7 OTHERS = 8.

DB_COMMIT CALL FUNCTION 'DB_COMMIT'.



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