SAP ISU_M_HANDLE_SAP_HYPER Function Module for









ISU_M_HANDLE_SAP_HYPER is a standard isu m handle sap hyper 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 m handle sap hyper FM, simply by entering the name ISU_M_HANDLE_SAP_HYPER into the relevant SAP transaction such as SE37 or SE38.

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



Function ISU_M_HANDLE_SAP_HYPER 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_M_HANDLE_SAP_HYPER'"
EXPORTING
REF_OBJECT = "
U_ONLINE = "
N_DIALOG = "

IMPORTING
DB_UPDATE = "
RC_SERVICE_FUBA = "

CHANGING
H_COMMIT = "

TABLES
NEWKEY = "

EXCEPTIONS
INPUT_ERROR = 1 SERVICE_FUBA_ERROR = 2
.



IMPORTING Parameters details for ISU_M_HANDLE_SAP_HYPER

REF_OBJECT -

Data type: TEMOB-OBJECT
Optional: No
Call by Reference: Yes

U_ONLINE -

Data type: EMGGEN-UPD_ONLINE
Optional: No
Call by Reference: Yes

N_DIALOG -

Data type: EMGGEN-NO_DIALOG
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for ISU_M_HANDLE_SAP_HYPER

DB_UPDATE -

Data type: EMGGEN-KENNZX
Optional: No
Call by Reference: Yes

RC_SERVICE_FUBA -

Data type: SY-SUBRC
Optional: No
Call by Reference: Yes

CHANGING Parameters details for ISU_M_HANDLE_SAP_HYPER

H_COMMIT -

Data type: TEMFD-EMG_CHECK
Optional: No
Call by Reference: Yes

TABLES Parameters details for ISU_M_HANDLE_SAP_HYPER

NEWKEY -

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

EXCEPTIONS details

INPUT_ERROR -

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

SERVICE_FUBA_ERROR -

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

Copy and paste ABAP code example for ISU_M_HANDLE_SAP_HYPER 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_newkey  TYPE STANDARD TABLE OF EMG_KEY, "   
lv_h_commit  TYPE TEMFD-EMG_CHECK, "   
lv_db_update  TYPE EMGGEN-KENNZX, "   
lv_ref_object  TYPE TEMOB-OBJECT, "   
lv_input_error  TYPE TEMOB, "   
lv_u_online  TYPE EMGGEN-UPD_ONLINE, "   
lv_rc_service_fuba  TYPE SY-SUBRC, "   
lv_service_fuba_error  TYPE SY, "   
lv_n_dialog  TYPE EMGGEN-NO_DIALOG. "   

  CALL FUNCTION 'ISU_M_HANDLE_SAP_HYPER'  "
    EXPORTING
         REF_OBJECT = lv_ref_object
         U_ONLINE = lv_u_online
         N_DIALOG = lv_n_dialog
    IMPORTING
         DB_UPDATE = lv_db_update
         RC_SERVICE_FUBA = lv_rc_service_fuba
    CHANGING
         H_COMMIT = lv_h_commit
    TABLES
         NEWKEY = lt_newkey
    EXCEPTIONS
        INPUT_ERROR = 1
        SERVICE_FUBA_ERROR = 2
. " ISU_M_HANDLE_SAP_HYPER




ABAP code using 7.40 inline data declarations to call FM ISU_M_HANDLE_SAP_HYPER

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 EMG_CHECK FROM TEMFD INTO @DATA(ld_h_commit).
 
"SELECT single KENNZX FROM EMGGEN INTO @DATA(ld_db_update).
 
"SELECT single OBJECT FROM TEMOB INTO @DATA(ld_ref_object).
 
 
"SELECT single UPD_ONLINE FROM EMGGEN INTO @DATA(ld_u_online).
 
"SELECT single SUBRC FROM SY INTO @DATA(ld_rc_service_fuba).
 
 
"SELECT single NO_DIALOG FROM EMGGEN INTO @DATA(ld_n_dialog).
 


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!