DEFINITION_SUBSCREEN SAP Method Determine Subscreen to be Called
Below is documentation, parameters and attributes of ABAP Method DEFINITION_SUBSCREEN within SAP class IF_EX_BADI_HU_DIALOG. 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_HU_DIALOG 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 DEFINITION_SUBSCREEN can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DEFINITION_SUBSCREEN
.| Name | Type | Data Type | Description | Default Value |
| IF_DETAIL | Importing | TYPE XFELD | Indicates whether you are on the detail screen | |
| IS_HEADER51 | Importing | TYPE HEADER51 | HU_Processing: General Header Data | |
| IS_V51G | Importing | TYPE V51GGL | Global Flags in Packing | |
| CF_ACTIVETAB | Changing | TYPE SYUCOMM | Function Code of Active Tab Page | |
| CF_PROGRAM | Changing | TYPE SCRAPROG | Program name to which the subscreen belongs | |
| CF_SCREEN | Changing | TYPE SCRFDYNNR | Number of Subscreen Included on Tab | |
| CS_VEKP | Changing | TYPE VEKPVB | Work Structure for Handling Unit Header |
Exceptions of Method DEFINITION_SUBSCREEN
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_EX_BADI_HU_DIALOG.
DATA: lv_CF_ACTIVETAB TYPE SYUCOMM,
lv_CF_PROGRAM TYPE SCRAPROG,
lv_CF_SCREEN TYPE SCRFDYNNR,
lv_CS_VEKP TYPE VEKPVB,
lv_IF_DETAIL TYPE XFELD,
lv_IS_HEADER51 TYPE HEADER51,
lv_IS_V51G TYPE V51GGL,
lv_other TYPE c.
CALL METHOD lo_class=>DEFINITION_SUBSCREEN(
EXPORTING
IF_DETAIL = lv_IF_DETAIL
IS_HEADER51 = lv_IS_HEADER51
IS_V51G = lv_IS_V51G
CHANGING
CF_ACTIVETAB = lv_CF_ACTIVETAB
CF_PROGRAM = lv_CF_PROGRAM
CF_SCREEN = lv_CF_SCREEN
CS_VEKP = lv_CS_VEKP ).
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