SAP RSISP_MNTN_DATAOBJ_DESC Function Module for Maintain dataobject description









RSISP_MNTN_DATAOBJ_DESC is a standard rsisp mntn dataobj desc SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Maintain dataobject description processing and below is the pattern details for this FM, 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 rsisp mntn dataobj desc FM, simply by entering the name RSISP_MNTN_DATAOBJ_DESC into the relevant SAP transaction such as SE37 or SE38.

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



Function RSISP_MNTN_DATAOBJ_DESC 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 'RSISP_MNTN_DATAOBJ_DESC'"Maintain dataobject description
EXPORTING
* I_EDITABLE = 'X' "Changeable or Display
* IS_LAYOUT = "Call Layout for Call Package Builder
* I_DIALOG_MODE = "Dialog Mode
* IR_MSG = "Container for Messages

IMPORTING
E_NAV_CODE = "Menu Painter: Object code

CHANGING
CT_DATAOBJ_DESC = "Intelligent Services: Data Item List
.



IMPORTING Parameters details for RSISP_MNTN_DATAOBJ_DESC

I_EDITABLE - Changeable or Display

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: Yes

IS_LAYOUT - Call Layout for Call Package Builder

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

I_DIALOG_MODE - Dialog Mode

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

IR_MSG - Container for Messages

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

EXPORTING Parameters details for RSISP_MNTN_DATAOBJ_DESC

E_NAV_CODE - Menu Painter: Object code

Data type: GUI_CODE
Optional: No
Call by Reference: Yes

CHANGING Parameters details for RSISP_MNTN_DATAOBJ_DESC

CT_DATAOBJ_DESC - Intelligent Services: Data Item List

Data type: RSISR_T_DATAITEM
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for RSISP_MNTN_DATAOBJ_DESC 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:
lv_e_nav_code  TYPE GUI_CODE, "   
lv_i_editable  TYPE C, "   'X'
lv_ct_dataobj_desc  TYPE RSISR_T_DATAITEM, "   
lv_is_layout  TYPE RSIS_S_DOD_LAYOUT, "   
lv_i_dialog_mode  TYPE RSIS_E_DIALOG_MODE, "   
lv_ir_msg  TYPE CL_RSO_MSG. "   

  CALL FUNCTION 'RSISP_MNTN_DATAOBJ_DESC'  "Maintain dataobject description
    EXPORTING
         I_EDITABLE = lv_i_editable
         IS_LAYOUT = lv_is_layout
         I_DIALOG_MODE = lv_i_dialog_mode
         IR_MSG = lv_ir_msg
    IMPORTING
         E_NAV_CODE = lv_e_nav_code
    CHANGING
         CT_DATAOBJ_DESC = lv_ct_dataobj_desc
. " RSISP_MNTN_DATAOBJ_DESC




ABAP code using 7.40 inline data declarations to call FM RSISP_MNTN_DATAOBJ_DESC

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_i_editable) = '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!