BUILD_WHERE_CONDITION SAP Method of class /BOBF/CL_DAC_LEGACY_TABLE









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

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


Parameters of Method BUILD_WHERE_CONDITION

.

NameTypeData TypeDescriptionDefault Value
IS_NODE_CONFImportingTYPE
/BOBF/S_DAC_NODE
Structure for node information (responsibility of DAC)
IT_ATTRIBUTESImportingTYPE
LTT_STRING_TAB
IT_REF_TAB_ATTRIBUTESImportingTYPE
LTT_STRING_TAB
IT_SELECTIONImportingTYPE
/BOBF/T_BUF_SELECTION
IV_REF_TAB_NAMEImportingTYPE
STRING
IV_REF_TAB_STRUCTUREDImportingTYPE
BOOLE_D
EO_RANGEExportingTYPE REF TO
DATA
ET_WHEREExportingTYPE
LTT_STRING_TAB



Exceptions of Method BUILD_WHERE_CONDITION

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOBF/CL_DAC_LEGACY_TABLE.
DATA: lv_EO_RANGE TYPE DATA,
lv_ET_WHERE TYPE LTT_STRING_TAB,
lv_IS_NODE_CONF TYPE /BOBF/S_DAC_NODE,
lv_IT_ATTRIBUTES TYPE LTT_STRING_TAB,
lv_IT_REF_TAB_ATTRIBUTES TYPE LTT_STRING_TAB,
lv_IT_SELECTION TYPE /BOBF/T_BUF_SELECTION,
lv_IV_REF_TAB_NAME TYPE STRING,
lv_IV_REF_TAB_STRUCTURED TYPE BOOLE_D,
lv_other TYPE c.

CALL METHOD lo_class=>BUILD_WHERE_CONDITION(
EXPORTING
IS_NODE_CONF = lv_IS_NODE_CONF
IT_ATTRIBUTES = lv_IT_ATTRIBUTES
IT_REF_TAB_ATTRIBUTES = lv_IT_REF_TAB_ATTRIBUTES
IT_SELECTION = lv_IT_SELECTION
IV_REF_TAB_NAME = lv_IV_REF_TAB_NAME
IV_REF_TAB_STRUCTURED = lv_IV_REF_TAB_STRUCTURED
IMPORTING
EO_RANGE = lv_EO_RANGE
ET_WHERE = lv_ET_WHERE ).

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!