VALIDATE_SEL_SCREEN SAP Method Validate Selection Screen Details









Below is documentation, parameters and attributes of ABAP Method VALIDATE_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 VALIDATE_SEL_SCREEN can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method VALIDATE_SEL_SCREEN

.

NameTypeData TypeDescriptionDefault Value
I_DELVNOImportingTYPE
RSDSSELOPT_T
Table Type of RSDSSELOPT
I_DELV_SELImportingTYPE
C
delv sel
I_DEL_LEVELImportingTYPE
WSPT_DOC_LEVEL
Document level(for IS-OIL)
I_DOC_LEVELImportingTYPE
WSPT_DOC_LEVEL
Document level(for IS-OIL)
I_DOC_TYPEImportingTYPE
WSPT_DOC_CATG
Document Category
I_SHIPNOImportingTYPE
RSDSSELOPT_T
Table Type of RSDSSELOPT
I_SHIP_SELImportingTYPE
C
I_DS_DOCTYImportingTYPE
LFART
Delivery Type
I_IMPORTImportingTYPE
FLAG
General Flag
I_LOADDTImportingTYPE
DATS
Field of type DATS
I_SHPDTImportingTYPE
DATS
Field of type DATS



Exceptions of Method VALIDATE_SEL_SCREEN

VALIDATION_FAILED - Validation Failed

Example ABAP coding


DATA: lo_class TYPE REF TO IF_BADI_PT_IS_OIL_MSAFT_REP.
DATA: lv_I_DELVNO TYPE RSDSSELOPT_T,
lv_I_DELV_SEL TYPE C,
lv_I_DEL_LEVEL TYPE WSPT_DOC_LEVEL,
lv_I_DOC_LEVEL TYPE WSPT_DOC_LEVEL,
lv_I_DOC_TYPE TYPE WSPT_DOC_CATG,
lv_I_SHIPNO TYPE RSDSSELOPT_T,
lv_I_SHIP_SEL TYPE C,
lv_I_DS_DOCTY TYPE LFART,
lv_I_IMPORT TYPE FLAG,
lv_I_LOADDT TYPE DATS,
lv_I_SHPDT TYPE DATS,
lv_other TYPE c.

CALL METHOD lo_class=>VALIDATE_SEL_SCREEN(
EXPORTING
I_DELVNO = lv_I_DELVNO
I_DELV_SEL = lv_I_DELV_SEL
I_DEL_LEVEL = lv_I_DEL_LEVEL
I_DOC_LEVEL = lv_I_DOC_LEVEL
I_DOC_TYPE = lv_I_DOC_TYPE
I_SHIPNO = lv_I_SHIPNO
I_SHIP_SEL = lv_I_SHIP_SEL
I_DS_DOCTY = lv_I_DS_DOCTY
I_IMPORT = lv_I_IMPORT
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



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!