SAP ISU_SRVPROD_GET_CONFIGURATION Function Module for









ISU_SRVPROD_GET_CONFIGURATION is a standard isu srvprod get configuration 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 isu srvprod get configuration FM, simply by entering the name ISU_SRVPROD_GET_CONFIGURATION into the relevant SAP transaction such as SE37 or SE38.

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



Function ISU_SRVPROD_GET_CONFIGURATION 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 'ISU_SRVPROD_GET_CONFIGURATION'"
EXPORTING
* I_TITLETEXT = "
I_DELIVERYPLANT = "
* I_CALLFORISUPRODUCT = ' ' "

TABLES
I_SERVICEOBJECTS = "
E_CONF_OUT = "

EXCEPTIONS
NOT_CONFIGURABLE = 1 CONFIGURATION_ERROR = 2 NO_CONFIGURATION_DONE = 3
.



IMPORTING Parameters details for ISU_SRVPROD_GET_CONFIGURATION

I_TITLETEXT -

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

I_DELIVERYPLANT -

Data type: MVKE-DWERK
Optional: No
Call by Reference: Yes

I_CALLFORISUPRODUCT -

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

TABLES Parameters details for ISU_SRVPROD_GET_CONFIGURATION

I_SERVICEOBJECTS -

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

E_CONF_OUT -

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

EXCEPTIONS details

NOT_CONFIGURABLE -

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

CONFIGURATION_ERROR -

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

NO_CONFIGURATION_DONE -

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

Copy and paste ABAP code example for ISU_SRVPROD_GET_CONFIGURATION 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_i_titletext  TYPE CUA_TIT_TX, "   
lt_i_serviceobjects  TYPE STANDARD TABLE OF ISUSRVPROD_KEY, "   
lv_not_configurable  TYPE ISUSRVPROD_KEY, "   
lt_e_conf_out  TYPE STANDARD TABLE OF ISUSRVPROD_CONFOUT, "   
lv_i_deliveryplant  TYPE MVKE-DWERK, "   
lv_configuration_error  TYPE MVKE, "   
lv_i_callforisuproduct  TYPE SYST-BATCH, "   SPACE
lv_no_configuration_done  TYPE SYST. "   

  CALL FUNCTION 'ISU_SRVPROD_GET_CONFIGURATION'  "
    EXPORTING
         I_TITLETEXT = lv_i_titletext
         I_DELIVERYPLANT = lv_i_deliveryplant
         I_CALLFORISUPRODUCT = lv_i_callforisuproduct
    TABLES
         I_SERVICEOBJECTS = lt_i_serviceobjects
         E_CONF_OUT = lt_e_conf_out
    EXCEPTIONS
        NOT_CONFIGURABLE = 1
        CONFIGURATION_ERROR = 2
        NO_CONFIGURATION_DONE = 3
. " ISU_SRVPROD_GET_CONFIGURATION




ABAP code using 7.40 inline data declarations to call FM ISU_SRVPROD_GET_CONFIGURATION

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.

 
 
 
 
"SELECT single DWERK FROM MVKE INTO @DATA(ld_i_deliveryplant).
 
 
"SELECT single BATCH FROM SYST INTO @DATA(ld_i_callforisuproduct).
DATA(ld_i_callforisuproduct) = ' '.
 
 


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!