SEL_CRIT_CHANGE SAP Method Change Selection Criteria for Batch Determination









Below is documentation, parameters and attributes of ABAP Method SEL_CRIT_CHANGE within SAP class IF_EX_VB_BD_SELECTION_CRITERIA. 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_VB_BD_SELECTION_CRITERIA 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 SEL_CRIT_CHANGE can also be found below:

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


Parameters of Method SEL_CRIT_CHANGE

.

NameTypeData TypeDescriptionDefault Value
IS_BDCOMImportingTYPE
BDCOM
Batch Determination Communication Structure
IS_KOMKHImportingTYPE
KOMKH
Batch Determination Communication Block Header
IS_KOMPHImportingTYPE
KOMPH
Batch Determination: Communication Record for Item
IT_CHARACTERISTICSImportingTYPE
TT_API_CHAR
Table Type for Structure API_CHAR
CT_SEL_CRITERIAChangingTYPE
TT_API_VAL_I
Table Type for API_VAL_I



Exceptions of Method SEL_CRIT_CHANGE

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_EX_VB_BD_SELECTION_CRITERIA.
DATA: lv_CT_SEL_CRITERIA TYPE TT_API_VAL_I,
lv_IS_BDCOM TYPE BDCOM,
lv_IS_KOMKH TYPE KOMKH,
lv_IS_KOMPH TYPE KOMPH,
lv_IT_CHARACTERISTICS TYPE TT_API_CHAR,
lv_other TYPE c.

CALL METHOD lo_class=>SEL_CRIT_CHANGE(
EXPORTING
IS_BDCOM = lv_IS_BDCOM
IS_KOMKH = lv_IS_KOMKH
IS_KOMPH = lv_IS_KOMPH
IT_CHARACTERISTICS = lv_IT_CHARACTERISTICS
CHANGING
CT_SEL_CRITERIA = lv_CT_SEL_CRITERIA ).

Links to Related Class(s)

IF_EX_VB...
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!