SAP Reports / Programs | Master Data | SAP Utilities | Master Data(IS-U-MD) SAP IS

EMDGEN_EPDTYPE_CROSS_COMPARE SAP ABAP Report - Cross-System Comparison of Master Data Template Categories







EMDGEN_EPDTYPE_CROSS_COMPARE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Cross-client and cross-system comparison of tables for master data template types This analysis report is only used internally within SAP...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 EMDGEN_EPDTYPE_CROSS_COMPARE 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 EMDGEN_EPDTYPE_CROSS_COMPARE. "Basic submit
SUBMIT EMDGEN_EPDTYPE_CROSS_COMPARE AND RETURN. "Return to original report after report execution complete
SUBMIT EMDGEN_EPDTYPE_CROSS_COMPARE 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: XCLIENT = D Client
Selection Text: XDEST = Destination
Selection Text: XLANGU = D Language Key
Title: Cross-System Comparison of Master Data Template Categories


INCLUDES used within this REPORT EMDGEN_EPDTYPE_CROSS_COMPARE

INCLUDE EMSG.


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:

EMDGEN_DB_EPDTYPE_ALL_RFC CALL FUNCTION 'EMDGEN_DB_EPDTYPE_ALL_RFC' DESTINATION p_types-rfcdest EXPORTING x_client = p_types-mandt "may be initial x_ranges_langu = p_langu IMPORTING y_client = p_types-mandt y_sysid = p_types-sysid TABLES t_epdtype = iepdtype t_epdtypet = p_types-iepdtypet t_epdtypea = iepdtypea t_epdtypeh = iepdtypeh t_epdtypeht = p_types-iepdtypeht EXCEPTIONS communication_failure = 1 MESSAGE msg_text system_failure = 2 MESSAGE msg_text.

MSG_OPEN CALL FUNCTION 'MSG_OPEN' EXPORTING x_log = 'X' "#EC NOTEXT x_no_dialog = 'X' "#EC NOTEXT IMPORTING y_msg_handle = p_obj-msg_handle EXCEPTIONS OTHERS = 1.

DDIF_NAMETAB_GET CALL FUNCTION 'DDIF_NAMETAB_GET' EXPORTING tabname = save_tabname TABLES x031l_tab = save_x031l EXCEPTIONS OTHERS = 1.

MSG_ACTION CALL FUNCTION 'MSG_ACTION' EXPORTING x_msg_handle = p_obj-msg_handle x_action = co_msg_dspl 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 EMDGEN_EPDTYPE_CROSS_COMPARE or its description.