SAP RS_MO_CALL_MODIMON_WITH_PARAM Function Module for









RS_MO_CALL_MODIMON_WITH_PARAM is a standard rs mo call modimon with param SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for rs mo call modimon with param FM, simply by entering the name RS_MO_CALL_MODIMON_WITH_PARAM into the relevant SAP transaction such as SE37 or SE38.

Function Group: SEMM
Program Name: SAPLSEMM
Main Program: SAPLSEMM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RS_MO_CALL_MODIMON_WITH_PARAM pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'RS_MO_CALL_MODIMON_WITH_PARAM'"
EXPORTING
* OPERATION_MODE = ' ' "
* OBJ_TYPE = ' ' "
* OBJ_NAME = ' ' "
* CORR_INSTRUCTIONS = "

CHANGING
* GROUP_FIRST_LEVEL_BY = 'O' "
* UPG_MODE_UNDETERMINED = 'X' "
* WITH_NOTE_CORRECTIONS = 'X' "
* UPG_MODE_OBSOLETE = 'X' "
* WITH_APPENDS = 'X' "
* WITH_DELETED_OBJECTS = ' ' "
* WITH_TRANSLATION = ' ' "
* WITH_MIGRATION_OBJECTS = ' ' "
* WITH_RESET_NOTES = ' ' "
* WITH_RESET_OBSOLETE_NOTES = ' ' "
* WITH_RESET_MODIFICATIONS = ' ' "
* WITH_MOD_ASS_SUPPORT = 'X' "
* WITH_RESET_TRANSLATION = ' ' "
* WITH_RESET_MIGRATION_OBJECTS = ' ' "
* UPG_CONFLICT_OBJECTS = 'X' "
* UPG_OBJECTS_TO_BE_TESTED = 'X' "
* UPG_OBJECTS_TEST_FINISHED = 'X' "
* UPG_ADJUSTMENT_INCOMPLETE = 'X' "
* UPG_SYNTAX_ERRORS = 'X' "
* WITH_TABLE_CONTENTS = ' ' "
* WITH_OTHER_OBJECTS = ' ' "
* WITH_RESET_TABLE_CONTENTS = ' ' "
* WITHOUT_MOD_ASS_SUPPORT = 'X' "
* WITH_RESET_OTHER_OBJECTS = ' ' "
* WITH_BUSINESS_ADD_INS = 'X' "
* UPG_ONLY_NEW_OBJECTS = ' ' "
* UPG_ADJUSTED_OBJECTS = 'X' "
* UPG_MODE_AUTOMATIC = 'X' "
* UPG_MODE_SEMIAUTOMATIC = 'X' "
* UPG_MODE_MANUAL = 'X' "

TABLES
* SEL_USER = "Last changed by
* SEL_DEVCLASS = "Package
* SEL_TRKORR = "Request/Task
* SEL_PROJECT_TRKORR = "Object list
* SEL_PROCESSOR = "Agents

EXCEPTIONS
UNKNOWN_OPERATION_MODE = 1
.



IMPORTING Parameters details for RS_MO_CALL_MODIMON_WITH_PARAM

OPERATION_MODE -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

OBJ_TYPE -

Data type: SMODILOG-OBJ_TYPE
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

OBJ_NAME -

Data type: SMODILOG-OBJ_NAME
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

CORR_INSTRUCTIONS -

Data type: TABLE
Optional: Yes
Call by Reference: No ( called with pass by value option)

CHANGING Parameters details for RS_MO_CALL_MODIMON_WITH_PARAM

GROUP_FIRST_LEVEL_BY -

Data type: C
Default: 'O'
Optional: Yes
Call by Reference: No ( called with pass by value option)

UPG_MODE_UNDETERMINED -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_NOTE_CORRECTIONS -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

UPG_MODE_OBSOLETE -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_APPENDS -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_DELETED_OBJECTS -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_TRANSLATION -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_MIGRATION_OBJECTS -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_RESET_NOTES -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_RESET_OBSOLETE_NOTES -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_RESET_MODIFICATIONS -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_MOD_ASS_SUPPORT -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_RESET_TRANSLATION -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_RESET_MIGRATION_OBJECTS -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

UPG_CONFLICT_OBJECTS -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

UPG_OBJECTS_TO_BE_TESTED -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

UPG_OBJECTS_TEST_FINISHED -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

UPG_ADJUSTMENT_INCOMPLETE -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

UPG_SYNTAX_ERRORS -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_TABLE_CONTENTS -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_OTHER_OBJECTS -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_RESET_TABLE_CONTENTS -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITHOUT_MOD_ASS_SUPPORT -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_RESET_OTHER_OBJECTS -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_BUSINESS_ADD_INS -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

UPG_ONLY_NEW_OBJECTS -

Data type: C
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

UPG_ADJUSTED_OBJECTS -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

UPG_MODE_AUTOMATIC -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

UPG_MODE_SEMIAUTOMATIC -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

UPG_MODE_MANUAL -

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for RS_MO_CALL_MODIMON_WITH_PARAM

SEL_USER - Last changed by

Data type: SMM_SEL_USER_TAB
Optional: Yes
Call by Reference: Yes

SEL_DEVCLASS - Package

Data type: SMM_SEL_DEVCLASS_TAB
Optional: Yes
Call by Reference: Yes

SEL_TRKORR - Request/Task

Data type: SMM_SEL_TRKORR_TAB
Optional: Yes
Call by Reference: Yes

SEL_PROJECT_TRKORR - Object list

Data type: SMM_SEL_TRKORR_TAB
Optional: Yes
Call by Reference: Yes

SEL_PROCESSOR - Agents

Data type: SMM_SEL_USER_TAB
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

UNKNOWN_OPERATION_MODE -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for RS_MO_CALL_MODIMON_WITH_PARAM Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.

DATA:
lt_sel_user  TYPE STANDARD TABLE OF SMM_SEL_USER_TAB, "   
lv_operation_mode  TYPE C, "   SPACE
lv_group_first_level_by  TYPE C, "   'O'
lv_unknown_operation_mode  TYPE C, "   
lv_upg_mode_undetermined  TYPE C, "   'X'
lv_with_note_corrections  TYPE C, "   'X'
lv_upg_mode_obsolete  TYPE C, "   'X'
lv_with_appends  TYPE C, "   'X'
lv_with_deleted_objects  TYPE C, "   SPACE
lv_with_translation  TYPE C, "   SPACE
lv_with_migration_objects  TYPE C, "   SPACE
lv_with_reset_notes  TYPE C, "   SPACE
lv_with_reset_obsolete_notes  TYPE C, "   SPACE
lv_with_reset_modifications  TYPE C, "   SPACE
lv_obj_type  TYPE SMODILOG-OBJ_TYPE, "   SPACE
lt_sel_devclass  TYPE STANDARD TABLE OF SMM_SEL_DEVCLASS_TAB, "   
lv_with_mod_ass_support  TYPE C, "   'X'
lv_with_reset_translation  TYPE C, "   SPACE
lv_with_reset_migration_objects  TYPE C, "   SPACE
lv_upg_conflict_objects  TYPE C, "   'X'
lv_upg_objects_to_be_tested  TYPE C, "   'X'
lv_upg_objects_test_finished  TYPE C, "   'X'
lv_upg_adjustment_incomplete  TYPE C, "   'X'
lv_upg_syntax_errors  TYPE C, "   'X'
lv_with_table_contents  TYPE C, "   SPACE
lv_with_other_objects  TYPE C, "   SPACE
lv_with_reset_table_contents  TYPE C, "   SPACE
lv_obj_name  TYPE SMODILOG-OBJ_NAME, "   SPACE
lt_sel_trkorr  TYPE STANDARD TABLE OF SMM_SEL_TRKORR_TAB, "   
lv_without_mod_ass_support  TYPE C, "   'X'
lv_with_reset_other_objects  TYPE C, "   SPACE
lv_corr_instructions  TYPE TABLE, "   
lt_sel_project_trkorr  TYPE STANDARD TABLE OF SMM_SEL_TRKORR_TAB, "   
lv_with_business_add_ins  TYPE C, "   'X'
lt_sel_processor  TYPE STANDARD TABLE OF SMM_SEL_USER_TAB, "   
lv_upg_only_new_objects  TYPE C, "   SPACE
lv_upg_adjusted_objects  TYPE C, "   'X'
lv_upg_mode_automatic  TYPE C, "   'X'
lv_upg_mode_semiautomatic  TYPE C, "   'X'
lv_upg_mode_manual  TYPE C. "   'X'

  CALL FUNCTION 'RS_MO_CALL_MODIMON_WITH_PARAM'  "
    EXPORTING
         OPERATION_MODE = lv_operation_mode
         OBJ_TYPE = lv_obj_type
         OBJ_NAME = lv_obj_name
         CORR_INSTRUCTIONS = lv_corr_instructions
    CHANGING
         GROUP_FIRST_LEVEL_BY = lv_group_first_level_by
         UPG_MODE_UNDETERMINED = lv_upg_mode_undetermined
         WITH_NOTE_CORRECTIONS = lv_with_note_corrections
         UPG_MODE_OBSOLETE = lv_upg_mode_obsolete
         WITH_APPENDS = lv_with_appends
         WITH_DELETED_OBJECTS = lv_with_deleted_objects
         WITH_TRANSLATION = lv_with_translation
         WITH_MIGRATION_OBJECTS = lv_with_migration_objects
         WITH_RESET_NOTES = lv_with_reset_notes
         WITH_RESET_OBSOLETE_NOTES = lv_with_reset_obsolete_notes
         WITH_RESET_MODIFICATIONS = lv_with_reset_modifications
         WITH_MOD_ASS_SUPPORT = lv_with_mod_ass_support
         WITH_RESET_TRANSLATION = lv_with_reset_translation
         WITH_RESET_MIGRATION_OBJECTS = lv_with_reset_migration_objects
         UPG_CONFLICT_OBJECTS = lv_upg_conflict_objects
         UPG_OBJECTS_TO_BE_TESTED = lv_upg_objects_to_be_tested
         UPG_OBJECTS_TEST_FINISHED = lv_upg_objects_test_finished
         UPG_ADJUSTMENT_INCOMPLETE = lv_upg_adjustment_incomplete
         UPG_SYNTAX_ERRORS = lv_upg_syntax_errors
         WITH_TABLE_CONTENTS = lv_with_table_contents
         WITH_OTHER_OBJECTS = lv_with_other_objects
         WITH_RESET_TABLE_CONTENTS = lv_with_reset_table_contents
         WITHOUT_MOD_ASS_SUPPORT = lv_without_mod_ass_support
         WITH_RESET_OTHER_OBJECTS = lv_with_reset_other_objects
         WITH_BUSINESS_ADD_INS = lv_with_business_add_ins
         UPG_ONLY_NEW_OBJECTS = lv_upg_only_new_objects
         UPG_ADJUSTED_OBJECTS = lv_upg_adjusted_objects
         UPG_MODE_AUTOMATIC = lv_upg_mode_automatic
         UPG_MODE_SEMIAUTOMATIC = lv_upg_mode_semiautomatic
         UPG_MODE_MANUAL = lv_upg_mode_manual
    TABLES
         SEL_USER = lt_sel_user
         SEL_DEVCLASS = lt_sel_devclass
         SEL_TRKORR = lt_sel_trkorr
         SEL_PROJECT_TRKORR = lt_sel_project_trkorr
         SEL_PROCESSOR = lt_sel_processor
    EXCEPTIONS
        UNKNOWN_OPERATION_MODE = 1
. " RS_MO_CALL_MODIMON_WITH_PARAM




ABAP code using 7.40 inline data declarations to call FM RS_MO_CALL_MODIMON_WITH_PARAM

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
DATA(ld_operation_mode) = ' '.
 
DATA(ld_group_first_level_by) = 'O'.
 
 
DATA(ld_upg_mode_undetermined) = 'X'.
 
DATA(ld_with_note_corrections) = 'X'.
 
DATA(ld_upg_mode_obsolete) = 'X'.
 
DATA(ld_with_appends) = 'X'.
 
DATA(ld_with_deleted_objects) = ' '.
 
DATA(ld_with_translation) = ' '.
 
DATA(ld_with_migration_objects) = ' '.
 
DATA(ld_with_reset_notes) = ' '.
 
DATA(ld_with_reset_obsolete_notes) = ' '.
 
DATA(ld_with_reset_modifications) = ' '.
 
"SELECT single OBJ_TYPE FROM SMODILOG INTO @DATA(ld_obj_type).
DATA(ld_obj_type) = ' '.
 
 
DATA(ld_with_mod_ass_support) = 'X'.
 
DATA(ld_with_reset_translation) = ' '.
 
DATA(ld_with_reset_migration_objects) = ' '.
 
DATA(ld_upg_conflict_objects) = 'X'.
 
DATA(ld_upg_objects_to_be_tested) = 'X'.
 
DATA(ld_upg_objects_test_finished) = 'X'.
 
DATA(ld_upg_adjustment_incomplete) = 'X'.
 
DATA(ld_upg_syntax_errors) = 'X'.
 
DATA(ld_with_table_contents) = ' '.
 
DATA(ld_with_other_objects) = ' '.
 
DATA(ld_with_reset_table_contents) = ' '.
 
"SELECT single OBJ_NAME FROM SMODILOG INTO @DATA(ld_obj_name).
DATA(ld_obj_name) = ' '.
 
 
DATA(ld_without_mod_ass_support) = 'X'.
 
DATA(ld_with_reset_other_objects) = ' '.
 
 
 
DATA(ld_with_business_add_ins) = 'X'.
 
 
DATA(ld_upg_only_new_objects) = ' '.
 
DATA(ld_upg_adjusted_objects) = 'X'.
 
DATA(ld_upg_mode_automatic) = 'X'.
 
DATA(ld_upg_mode_semiautomatic) = 'X'.
 
DATA(ld_upg_mode_manual) = 'X'.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!