DMC_MT_COUNT_TABLES_ANALYSE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for One part of the output of the analysis is a list of the previously counted data (sender before migration, receiver before and after migration, duplicates)...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_MT_COUNT_TABLES_ANALYSE 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_RUN_ID = Precalculation/Access Plan ID
Selection Text: P_MT_ID = D Mass Transfer ID
Selection Text: CB_RIDSP = Display run info data
Selection Text: CB_HDR = Only display header tables
Title: MWB: Analysis of Results of Table Counting
Text Symbol: T01 = Selection Criteria
Text Symbol: H13 = Records Read
Text Symbol: H12 = Calc. Records
Text Symbol: H10 = Aggregated
Text Symbol: H09 = Duplicates
Text Symbol: H08 = Difference
Text Symbol: H07 = Migrated
Text Symbol: H06 = Receiver Desired
Text Symbol: H05 = Receiver After Migr.
Text Symbol: H04 = Receiver Bef. Migr.
Text Symbol: H03 = Sender
Text Symbol: H00 = Status
Text Symbol: D13 = Read Records (Run Info)
Text Symbol: D12 = Calculated Records (Run Info)
Text Symbol: D10 = Number of Aggregated Records
Text Symbol: D09 = Number of Duplicates
Text Symbol: D08 = Difference of Rec. Receiver Act.-Desired
Text Symbol: D07 = Number of Records Migrated
Text Symbol: D06 = Expected Records in Receiver After Migr.
Text Symbol: D05 = No. of Records in Receiver After Migr.
Text Symbol: D04 = No. of Records in Receiver Before Migr.
Text Symbol: D03 = Number of Records in Sender
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING is_layout = wa_layout it_fieldcat = it_fieldcat i_save = 'A' TABLES t_outtab = it_outtab EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = sy-cprog i_structure_name = 'DMC_COUNT_ANALYSE' i_client_never_display = 'X' CHANGING ct_fieldcat = ch_fieldcat EXCEPTIONS inconsistent_interface = 1 program_error = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
DMC_MT_COUNT_TABLES_ANALYSE - MWB: Analysis of Results of Table Counting DMC_MT_COUNT_TABLES_ANALYSE - MWB: Analysis of Results of Table Counting DMC_MT_COUNT_TABLES - MWB: Table Count for a Mass Transfer DMC_MT_COUNT_TABLES - MWB: Table Count for a Mass Transfer DMC_MT_CLUSTER_DELETE - For a mass transfer & access pl., delete cluster data in sender system DMC_MT_CLUSTER_DELETE - For a mass transfer & access pl., delete cluster data in sender system