SCREEN_OPEN SAP Method Opens Enhancement Subscreen in Transfer, DG Tab Page
Below is documentation, parameters and attributes of ABAP Method SCREEN_OPEN within SAP class IF_EX_BADI_EHSDG_SH_001. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_BADI_EHSDG_SH_001 into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method SCREEN_OPEN can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method SCREEN_OPEN
.| Name | Type | Data Type | Description | Default Value |
| I_ACTYPE | Importing | TYPE AKTYP | Activity Type in the Transaction | |
| I_VTRLK_TAB | Importing | TYPE VTRLK_TAB | Table Type for VTRLK: Delivery Header for Shipment | |
| I_VTRLP_TAB | Importing | TYPE VTRLP_TAB | Table Type for VTRLP: Delivery Items in Shipment | |
| I_VTSPVB_TAB | Importing | TYPE VTSPVB_TAB | Table Type for VTSPVB: Shipment Item in Stage with Dyn. Data | |
| I_VTTK | Importing | TYPE VTTK | Shipment Header | |
| I_VTTPVB_TAB | Importing | TYPE VTTPVB_TAB | Table Type for VTTPVB: Shipment Items with Dynamic Data | |
| I_VTTS | Importing | TYPE VTTS | Stage of Shipment | |
| I_VTTSVB_TAB | Importing | TYPE VTTSVB_TAB | Table Type for VTTSVB: Shipment Stages with Dynamic Data | |
| E_DYNNR | Exporting | TYPE SY-DYNNR | Current Screen Number | |
| E_FLG_ACTIVE | Exporting | TYPE ESEBOOLE | Indicator Whether Enhancement Is Active | |
| E_FUNCTION_OK_CODE | Exporting | TYPE RS38L_FNAM | OK Code Handler Function Module | |
| E_PROGNAME | Exporting | TYPE SY-REPID | Function Group |
Exceptions of Method SCREEN_OPEN
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_EHSDG_SH_001.
DATA: lv_E_DYNNR TYPE SY-DYNNR,
lv_E_FLG_ACTIVE TYPE ESEBOOLE,
lv_E_FUNCTION_OK_CODE TYPE RS38L_FNAM,
lv_E_PROGNAME TYPE SY-REPID,
lv_I_ACTYPE TYPE AKTYP,
lv_I_VTRLK_TAB TYPE VTRLK_TAB,
lv_I_VTRLP_TAB TYPE VTRLP_TAB,
lv_I_VTSPVB_TAB TYPE VTSPVB_TAB,
lv_I_VTTK TYPE VTTK,
lv_I_VTTPVB_TAB TYPE VTTPVB_TAB,
lv_I_VTTS TYPE VTTS,
lv_I_VTTSVB_TAB TYPE VTTSVB_TAB,
lv_other TYPE c.
CALL METHOD lo_class=>SCREEN_OPEN(
EXPORTING
I_ACTYPE = lv_I_ACTYPE
I_VTRLK_TAB = lv_I_VTRLK_TAB
I_VTRLP_TAB = lv_I_VTRLP_TAB
I_VTSPVB_TAB = lv_I_VTSPVB_TAB
I_VTTK = lv_I_VTTK
I_VTTPVB_TAB = lv_I_VTTPVB_TAB
I_VTTS = lv_I_VTTS
I_VTTSVB_TAB = lv_I_VTTSVB_TAB
IMPORTING
E_DYNNR = lv_E_DYNNR
E_FLG_ACTIVE = lv_E_FLG_ACTIVE
E_FUNCTION_OK_CODE = lv_E_FUNCTION_OK_CODE
E_PROGNAME = lv_E_PROGNAME ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects