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
.| Name | Type | Data Type | Description | Default Value |
| IS_NODE_CONF | Importing | TYPE /BOBF/S_DAC_NODE | Structure for node information (responsibility of DAC) | |
| IT_ATTRIBUTES | Importing | TYPE LTT_STRING_TAB | ||
| IT_REF_TAB_ATTRIBUTES | Importing | TYPE LTT_STRING_TAB | ||
| IT_SELECTION | Importing | TYPE /BOBF/T_BUF_SELECTION | ||
| IV_REF_TAB_NAME | Importing | TYPE STRING | ||
| IV_REF_TAB_STRUCTURED | Importing | TYPE BOOLE_D | ||
| EO_RANGE | Exporting | TYPE REF TO DATA | ||
| ET_WHERE | Exporting | TYPE LTT_STRING_TAB |
Exceptions of Method BUILD_WHERE_CONDITION
This method does not have any exceptionsExample 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