SAP Reports / Programs

RBDMONI_CCMS_IDOC SAP ABAP Report - ALE CCMS Monitoring: Data Supplier for IDoc Groups







RBDMONI_CCMS_IDOC is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Data Supplier for ALE CCMS Monitoring Objects It supplies data to the CCMS monitoring architecture so that a tree structure can be created with nodes consisting of the key figures from the ALE layer...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 RBDMONI_CCMS_IDOC 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 RBDMONI_CCMS_IDOC. "Basic submit
SUBMIT RBDMONI_CCMS_IDOC AND RETURN. "Return to original report after report execution complete
SUBMIT RBDMONI_CCMS_IDOC 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: DISPL = Display any messages
Title: ALE CCMS Monitoring: Data Supplier for IDoc Groups


INCLUDES used within this REPORT RBDMONI_CCMS_IDOC

INCLUDE: RSALEXTI,
RSALINTI.
INCLUDE MBDCCMSCONST.


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:

SALI_INTERNAL_SETTINGS CALL FUNCTION 'SALI_INTERNAL_SETTINGS' EXPORTING ALLOW_SYSTEMWIDE = 'X' EXCEPTIONS SETTING_NOT_ALLOWED = 1 OTHERS = 2 .

DD_DOMA_GET CALL FUNCTION 'DD_DOMA_GET' EXPORTING domain_name = 'EDI_STATVA' * GET_STATE = 'M ' langu = 'E' * PRID = 0 * WITHTEXT = 'X' * IMPORTING * DD01V_WA_A = * DD01V_WA_N = * GOT_STATE = TABLES dd07v_tab_a = domvals dd07v_tab_n = dummy EXCEPTIONS * ILLEGAL_VALUE = 1 * OP_FAILURE = 2 OTHERS = 3.

ALE_CCMS_EVALUATE_GRP CALL FUNCTION 'ALE_CCMS_EVALUATE_GRP' EXPORTING ccms_grp = grp mandt = mnd statva = statva direct = direction IMPORTING count = s_value TABLES i_ccmsgdet = i_ccmsgdet docnums = docnums_03.

ALE_CCMS_EVALUATE_GRP CALL FUNCTION 'ALE_CCMS_EVALUATE_GRP' EXPORTING ccms_grp = grp mandt = mnd statva = statva direct = direction IMPORTING count = s_value TABLES i_ccmsgdet = i_ccmsgdet * DOCNUMS = .

ALE_CCMS_GET_TID_OF_GRP CALL FUNCTION 'ALE_CCMS_GET_TID_OF_GRP' EXPORTING grp_name = grp_name sel_mandt = sel_mandt IMPORTING * attrib_name = parent_tid_dir1 = mo_tid_out parent_tid_dir2 = mo_tid_in parent_tid_rfc = mo_tid_rfc parent_tid_chp = mo_tid_chp EXCEPTIONS error = 1 OTHERS = 2 .

SALI_PERF_CREATE_ATTACH CALL FUNCTION 'SALI_PERF_CREATE_ATTACH' EXPORTING parent_tid = tid mte_name = name mte_class = p_class mte_numrange = al_nr_auto mte_uniquenum = 0 mte_severity = 50 " Value from 0 (minor) to " 255 (severe) that shows " how important an alert in " the MA is. Ex: Too many

SALI_PERF_REPORT_VALUE CALL FUNCTION 'SALI_PERF_REPORT_VALUE' EXPORTING total_of_reported_values = ex_p_value number_of_reported_values = 1 reportedby = my_repid CHANGING tid = ma_p_tid EXCEPTIONS invalid_tid = 1 wrong_typeclass = 2 invalid_parameters = 3 communication_failure = 4 other_problem = 5 OTHERS = 6.

ALE_CCMS_EVALUATE_TRFC CALL FUNCTION 'ALE_CCMS_EVALUATE_TRFC' EXPORTING mandt = mandt IMPORTING count = value TABLES idocs = idocs * ARFCS = .

SALR_MTE_GET_TREE CALL FUNCTION 'SALR_MTE_GET_TREE' EXPORTING tid = p_idoc_tid TABLES sub_tree = sub_tree.



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