DETERMINE_TRIGGERED_VAL_KEYS SAP Method of class /BOBF/CL_FRW









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

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


Parameters of Method DETERMINE_TRIGGERED_VAL_KEYS

.

NameTypeData TypeDescriptionDefault Value
IO_CHANGEImportingTYPE REF TO
/BOBF/CL_FRW_CHANGE
IS_VALIDATIONImportingTYPE
/BOBF/S_CONFRO_VAL_LIST
IV_LAST_STATEImportingTYPE
/BOBF/CONF_STATE
IV_PROCESSING_MODEImportingTYPE
/BOBF/FRW_PROCESSING_MODE
IV_USE_CHECK_TRIGGERImportingTYPE
ABAP_BOOL
ET_KEYExportingTYPE
/BOBF/T_FRW_KEY
CO_MESSAGEChangingTYPE REF TO
/BOBF/IF_FRW_MESSAGE



Exceptions of Method DETERMINE_TRIGGERED_VAL_KEYS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOBF/CL_FRW.
DATA: lv_CO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_ET_KEY TYPE /BOBF/T_FRW_KEY,
lv_IO_CHANGE TYPE /BOBF/CL_FRW_CHANGE,
lv_IS_VALIDATION TYPE /BOBF/S_CONFRO_VAL_LIST,
lv_IV_LAST_STATE TYPE /BOBF/CONF_STATE,
lv_IV_PROCESSING_MODE TYPE /BOBF/FRW_PROCESSING_MODE,
lv_IV_USE_CHECK_TRIGGER TYPE ABAP_BOOL,
lv_other TYPE c.

CALL METHOD lo_class=>DETERMINE_TRIGGERED_VAL_KEYS(
EXPORTING
IO_CHANGE = lv_IO_CHANGE
IS_VALIDATION = lv_IS_VALIDATION
IV_LAST_STATE = lv_IV_LAST_STATE
IV_PROCESSING_MODE = lv_IV_PROCESSING_MODE
IV_USE_CHECK_TRIGGER = lv_IV_USE_CHECK_TRIGGER
IMPORTING
ET_KEY = lv_ET_KEY
CHANGING
CO_MESSAGE = lv_CO_MESSAGE ).

Links to Related Class(s)

/BOBF/CL...
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!