DMC_TRANSFER_PERFORMANCE_EVAL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report prepares a data transfer with a few conversion objects that aims at evaluating the data transfer speed...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 DMC_TRANSFER_PERFORMANCE_EVAL into the relevant SAP transactions such as SE38 or SE80
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.
Selection Text: P_BLKSIZ = block size (in bytes)
Selection Text: P_GBYTES = Data volume per table (GB)
Selection Text: P_RCVREL = receiver system basis release
Selection Text: P_RFCRCV = receiver rfc destination
Selection Text: P_RFCSND = sender rfc destination
Selection Text: P_SNDREL = sender system basis release
Text Symbol: COB = Migration object definition
Text Symbol: ERR = XX failed. For details, see application log
Text Symbol: MTD = Mass Transfer creation
Text Symbol: PRJ = Project creation
Text Symbol: RTO = Runtime object generation
Text Symbol: SPR = Subproject creation
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
GUID_CREATE CALL FUNCTION 'GUID_CREATE' IMPORTING ev_guid_16 = g_guid16.
DTL_PROJ_DEFINE CALL FUNCTION 'DTL_PROJ_DEFINE' EXPORTING im_applic = 'SLO' im_project = g_project_ident i_tadir = abap_true IMPORTING * EX_LOGNUMBER = ex_status = gs_status.
DTL_SUBPROJ_DEFINE CALL FUNCTION 'DTL_SUBPROJ_DEFINE' EXPORTING im_project = g_project_ident im_subproject = g_project_ident i_tadir = abap_true IMPORTING * EX_LOGNUMBER = ex_status = gs_status.
DMC_SERVER_LIST CALL FUNCTION 'DMC_SERVER_LIST' EXPORTING rfc_type = cl_dmc_load_distribution=>co_convert rfc_dest = g_rfcdest TABLES server_values = gt_servers.
DTL_EXISTENCE_CHECK CALL FUNCTION 'DTL_EXISTENCE_CHECK' EXPORTING i_objecttype = '3' i_object = g_dummy_ident EXCEPTIONS object_not_found = 1 OTHERS = 2.
DTL_MT_DEFINE CALL FUNCTION 'DTL_MT_DEFINE' EXPORTING im_mt_id = g_mt_id im_subproject = g_project_ident i_max_portion_acpl = gc_portions_per_acpl IMPORTING ex_status = gs_status TABLES it_tables = gt_mt_tables.
DTL_READING_TYPE_CHANGE CALL FUNCTION 'DTL_READING_TYPE_CHANGE' EXPORTING i_mt_id = g_mt_id IMPORTING e_status = gs_status TABLES it_tables = gt_mt_tables.
DMC_GENERATE_SENDER_FUNCTGROUP CALL FUNCTION 'DMC_GENERATE_SENDER_FUNCTGROUP' EXPORTING i_mt_id = g_mt_id.
GUID_CREATE CALL FUNCTION 'GUID_CREATE' IMPORTING ev_guid_22 = gs_acs_plan_hdr-guid.
DTL_MT_ACPLANS_CALC CALL FUNCTION 'DTL_MT_ACPLANS_CALC' EXPORTING im_mode = 'E' im_mt_id = g_mt_id im_no_of_jobs = 3 im_acc_prec_id = 1 im_session_id = gc_session_id im_no_recalc = abap_true i_ddic_check = space IMPORTING es_status = gs_status.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.