BAL_DB_SEARCH SAP Method Equivalent to function module BAL_DB_SEARCH









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

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


Parameters of Method BAL_DB_SEARCH

.

NameTypeData TypeDescriptionDefault Value
IS_LOG_FILTERImportingTYPE
BAL_S_LFIL
Application Log: Log filter criteria
I_CLIENTImportingTYPE
SY-MANDT
Client ID of Current User
ET_LOG_HEADER_SIMPLEExportingTYPE
TT_BALHDR_SIMPLE
ET_LOG_HEADER_SORTEDExportingTYPE
TT_BALHDR_SORT_BY_HANDLE
Application Log: Log header data table
ET_LOG_HEADER_STDExportingTYPE
BALHDR_T
Application Log: Log header data table



Exceptions of Method BAL_DB_SEARCH

ET_LOG_HEADER_SIMPLEExportingTYPE
TT_BALHDR_SIMPLEET_LOG_HEADER_SORTEDExportingTYPE
TT_BALHDR_SORT_BY_HANDLEApplication Log: Log header data tableET_LOG_HEADER_STDExportingTYPE
BALHDR_TApplication Log: Log header data tableNO_FILTER_CRITERIA - Filter criteria missing

Example ABAP coding


DATA: lo_class TYPE REF TO /BOFU/CL_BAL_BUFFER_READONLY.
DATA: lv_ET_LOG_HEADER_SIMPLE TYPE TT_BALHDR_SIMPLE,
lv_ET_LOG_HEADER_SORTED TYPE TT_BALHDR_SORT_BY_HANDLE,
lv_ET_LOG_HEADER_STD TYPE BALHDR_T,
lv_IS_LOG_FILTER TYPE BAL_S_LFIL,
lv_I_CLIENT TYPE SY-MANDT,
lv_other TYPE c.

CALL METHOD lo_class=>BAL_DB_SEARCH(
EXPORTING
IS_LOG_FILTER = lv_IS_LOG_FILTER
I_CLIENT = lv_I_CLIENT
IMPORTING
ET_LOG_HEADER_SIMPLE = lv_ET_LOG_HEADER_SIMPLE
ET_LOG_HEADER_SORTED = lv_ET_LOG_HEADER_SORTED
ET_LOG_HEADER_STD = lv_ET_LOG_HEADER_STD ).

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!