SVRS_MASSCOMPARE_ACT_OBJECTS is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name SVRS_MASSCOMPARE_ACT_OBJECTS into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
SVRS_COMPARE
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'SVRS_MASSCOMPARE_ACT_OBJECTS' "Compare active objects on two systems
EXPORTING
it_e071 = " scwb_t_e071 CTS: Table Type for E071
* iv_rfcdest_a = " rfcdest
iv_rfcdest_b = " rfcdest
* iv_filter_lang = 'X' " svrs_bool Boolean
* iv_delete_lang = ' ' " svrs_bool Boolean
* iv_abap_ignore_case = 'X' " svrs_bool Boolean
* iv_abap_condense = 'X' " svrs_bool Boolean
* iv_abap_ignore_comments = 'X' " svrs_bool Boolean
* iv_abap_equivalence = 'X' " svrs_bool Boolean
* iv_with_gui_progress = 'X' " svrs_bool Boolean
IMPORTING
et_compare_items = " vrs_compare_item_tab Version Comparision: Table Info of objects for comparison
es_rfcsi_a = " rfcsi RFC System Information (See RFC_SYSTEM_INFO Function Module)
es_rfcsi_b = " rfcsi RFC System Information (See RFC_SYSTEM_INFO Function Module)
et_nonversionable_e071 = " scwb_t_e071 Non-versionable Objects
EXCEPTIONS
RFC_ERROR = 1 " RFC Error
NOT_SUPPORTED = 2 " Not supported in remote system
. " SVRS_MASSCOMPARE_ACT_OBJECTS
The ABAP code below is a full code listing to execute function module SVRS_MASSCOMPARE_ACT_OBJECTS including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| ld_et_compare_items | TYPE VRS_COMPARE_ITEM_TAB , |
| ld_es_rfcsi_a | TYPE RFCSI , |
| ld_es_rfcsi_b | TYPE RFCSI , |
| ld_et_nonversionable_e071 | TYPE SCWB_T_E071 . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_et_compare_items | TYPE VRS_COMPARE_ITEM_TAB , |
| ld_it_e071 | TYPE SCWB_T_E071 , |
| ld_es_rfcsi_a | TYPE RFCSI , |
| ld_iv_rfcdest_a | TYPE RFCDEST , |
| ld_es_rfcsi_b | TYPE RFCSI , |
| ld_iv_rfcdest_b | TYPE RFCDEST , |
| ld_et_nonversionable_e071 | TYPE SCWB_T_E071 , |
| ld_iv_filter_lang | TYPE SVRS_BOOL , |
| ld_iv_delete_lang | TYPE SVRS_BOOL , |
| ld_iv_abap_ignore_case | TYPE SVRS_BOOL , |
| ld_iv_abap_condense | TYPE SVRS_BOOL , |
| ld_iv_abap_ignore_comments | TYPE SVRS_BOOL , |
| ld_iv_abap_equivalence | TYPE SVRS_BOOL , |
| ld_iv_with_gui_progress | TYPE SVRS_BOOL . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name SVRS_MASSCOMPARE_ACT_OBJECTS or its description.