SAP ISU_EA22_GRAPHIC_OPEN Function Module for









ISU_EA22_GRAPHIC_OPEN is a standard isu ea22 graphic open 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 ea22 graphic open FM, simply by entering the name ISU_EA22_GRAPHIC_OPEN into the relevant SAP transaction such as SE37 or SE38.

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



Function ISU_EA22_GRAPHIC_OPEN 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_EA22_GRAPHIC_OPEN'"
EXPORTING
* X_HEADER = "
* X_AXIS_TITLE_X = "
* X_AXIS_TITLE_Y = "
X_CONTAINER_NAME = "

IMPORTING
YT_OKCODE = "
Y_REPID = "
Y_DYNNR = "

EXCEPTIONS
ERROR_OCCURRED = 1 EXISTING = 2 WMODE_NOT_SUPPORTED = 3
.



IMPORTING Parameters details for ISU_EA22_GRAPHIC_OPEN

X_HEADER -

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

X_AXIS_TITLE_X -

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

X_AXIS_TITLE_Y -

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

X_CONTAINER_NAME -

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

EXPORTING Parameters details for ISU_EA22_GRAPHIC_OPEN

YT_OKCODE -

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

Y_REPID -

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

Y_DYNNR -

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

EXCEPTIONS details

ERROR_OCCURRED -

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

EXISTING -

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

WMODE_NOT_SUPPORTED -

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

Copy and paste ABAP code example for ISU_EA22_GRAPHIC_OPEN 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_x_header  TYPE CHAR30, "   
lv_yt_okcode  TYPE IOKCODE, "   
lv_error_occurred  TYPE IOKCODE, "   
lv_y_repid  TYPE SY-REPID, "   
lv_existing  TYPE SY, "   
lv_x_axis_title_x  TYPE STRING, "   
lv_y_dynnr  TYPE SY-DYNNR, "   
lv_x_axis_title_y  TYPE STRING, "   
lv_wmode_not_supported  TYPE STRING, "   
lv_x_container_name  TYPE CHAR10. "   

  CALL FUNCTION 'ISU_EA22_GRAPHIC_OPEN'  "
    EXPORTING
         X_HEADER = lv_x_header
         X_AXIS_TITLE_X = lv_x_axis_title_x
         X_AXIS_TITLE_Y = lv_x_axis_title_y
         X_CONTAINER_NAME = lv_x_container_name
    IMPORTING
         YT_OKCODE = lv_yt_okcode
         Y_REPID = lv_y_repid
         Y_DYNNR = lv_y_dynnr
    EXCEPTIONS
        ERROR_OCCURRED = 1
        EXISTING = 2
        WMODE_NOT_SUPPORTED = 3
. " ISU_EA22_GRAPHIC_OPEN




ABAP code using 7.40 inline data declarations to call FM ISU_EA22_GRAPHIC_OPEN

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 REPID FROM SY INTO @DATA(ld_y_repid).
 
 
 
"SELECT single DYNNR FROM SY INTO @DATA(ld_y_dynnr).
 
 
 
 


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!