CONVAKEY_HDR_LOG_HANDLE SAP Method Convert Alternate Key: HEADER->LOG_HANDLE









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

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


Parameters of Method CONVAKEY_HDR_LOG_HANDLE

.

NameTypeData TypeDescriptionDefault Value
IO_CHANGEImportingTYPE REF TO
/BOBF/IF_FRW_CHANGE
Interface of Change Object
IT_KEYImportingTYPE
/BOFU/T_BALLOGHNDL
Application Log: Log Handle Table
IV_INVALIDATE_CACHEImportingTYPE
BOOLE_D
IV_STATEImportingTYPE
/BOBF/CONF_STATE
State
IT_KEYImportingTYPE
INDEX TABLE
Application Log: Log Handle Table
ET_RESULTExportingTYPE
/BOBF/T_FRW_KEYINDEX
Key table with explicit index



Exceptions of Method CONVAKEY_HDR_LOG_HANDLE

/BOBF/CX_FRW - BOPF Exception Class

Example ABAP coding


DATA: lo_class TYPE REF TO /BOFU/CL_BAL_BUFFER.
DATA: lv_ET_RESULT TYPE /BOBF/T_FRW_KEYINDEX,
lv_IO_CHANGE TYPE /BOBF/IF_FRW_CHANGE,
lv_IT_KEY TYPE /BOFU/T_BALLOGHNDL,
lv_IV_INVALIDATE_CACHE TYPE BOOLE_D,
lv_IV_STATE TYPE /BOBF/CONF_STATE,
lv_IT_KEY TYPE INDEX TABLE,
lv_other TYPE c.

CALL METHOD lo_class=>CONVAKEY_HDR_LOG_HANDLE(
EXPORTING
IO_CHANGE = lv_IO_CHANGE
IT_KEY = lv_IT_KEY
IV_INVALIDATE_CACHE = lv_IV_INVALIDATE_CACHE
IV_STATE = lv_IV_STATE
IT_KEY = lv_IT_KEY
IMPORTING
ET_RESULT = lv_ET_RESULT ).

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!