INIT_DUMMY_MODIFY_KEYS SAP Method Initialize Dummy Create/Delete Keys









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

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


Parameters of Method INIT_DUMMY_MODIFY_KEYS

.

NameTypeData TypeDescriptionDefault Value
IT_KEY_CREATEImportingTYPE
/BOBF/T_FRW_KEY
IT_KEY_DELETEImportingTYPE
/BOBF/T_FRW_KEY
IT_KEY_UPDATEImportingTYPE
/BOBF/T_FRW_KEY
IV_NODE_KEYImportingTYPE
/BOBF/OBM_NODE_KEY
Node



Exceptions of Method INIT_DUMMY_MODIFY_KEYS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOFU/CL_OSPO_BUF_DISPATCHER.
DATA: lv_IT_KEY_CREATE TYPE /BOBF/T_FRW_KEY,
lv_IT_KEY_DELETE TYPE /BOBF/T_FRW_KEY,
lv_IT_KEY_UPDATE TYPE /BOBF/T_FRW_KEY,
lv_IV_NODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_other TYPE c.

CALL METHOD lo_class=>INIT_DUMMY_MODIFY_KEYS(
EXPORTING
IT_KEY_CREATE = lv_IT_KEY_CREATE
IT_KEY_DELETE = lv_IT_KEY_DELETE
IT_KEY_UPDATE = lv_IT_KEY_UPDATE
IV_NODE_KEY = lv_IV_NODE_KEY ).

Links to Related Class(s)

/BOFU/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!