MODIFY_SEL_SCREEN SAP Method Modify Selection Screen Details
Below is documentation, parameters and attributes of ABAP Method MODIFY_SEL_SCREEN within SAP class IF_BADI_PT_IS_OIL_MSAFT_REP. 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_BADI_PT_IS_OIL_MSAFT_REP 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 MODIFY_SEL_SCREEN can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method MODIFY_SEL_SCREEN
.| Name | Type | Data Type | Description | Default Value |
| I_DEL_SEL | Importing | TYPE C | ||
| I_EXPORT | Importing | TYPE C | ||
| I_IMPORT | Importing | TYPE C | ||
| I_SHP_SEL | Importing | TYPE C | ||
| CS_SCREEN | Changing | TYPE SCREEN | Structure Description for the System Data Object SCREEN | |
| I_DOC_TYPE | Changing | TYPE WSPT_DOC_CATG | Document Category | |
| I_DS_DOCTY | Changing | TYPE LFART | Delivery Type | |
| I_LOADDT | Changing | TYPE DATS | Field of type DATS | |
| I_SHPDT | Changing | TYPE DATS | Field of type DATS |
Exceptions of Method MODIFY_SEL_SCREEN
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_BADI_PT_IS_OIL_MSAFT_REP.
DATA: lv_CS_SCREEN TYPE SCREEN,
lv_I_DEL_SEL TYPE C,
lv_I_EXPORT TYPE C,
lv_I_IMPORT TYPE C,
lv_I_SHP_SEL TYPE C,
lv_I_DOC_TYPE TYPE WSPT_DOC_CATG,
lv_I_DS_DOCTY TYPE LFART,
lv_I_LOADDT TYPE DATS,
lv_I_SHPDT TYPE DATS,
lv_other TYPE c.
CALL METHOD lo_class=>MODIFY_SEL_SCREEN(
EXPORTING
I_DEL_SEL = lv_I_DEL_SEL
I_EXPORT = lv_I_EXPORT
I_IMPORT = lv_I_IMPORT
I_SHP_SEL = lv_I_SHP_SEL
CHANGING
CS_SCREEN = lv_CS_SCREEN
I_DOC_TYPE = lv_I_DOC_TYPE
I_DS_DOCTY = lv_I_DS_DOCTY
I_LOADDT = lv_I_LOADDT
I_SHPDT = lv_I_SHPDT ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects