GET_RESULT_BRF SAP Method Get the result for conditions with direct access
Below is documentation, parameters and attributes of ABAP Method GET_RESULT_BRF within SAP class /SCMTMS/CL_COND_OL. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /SCMTMS/CL_COND_OL into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method GET_RESULT_BRF can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_RESULT_BRF
.| Name | Type | Data Type | Description | Default Value |
| IT_BOINST_KEY | Importing | TYPE /BOBF/T_FRW_KEY | Key Table of Start Node for condition processing, entry node | |
| IT_BOKEY_DOKEY_DATA | Importing | TYPE /SCMTMS/T_BOKEY_DOKEY_DATA | BO key, Data Object Key, result data | |
| IT_COND_KEY | Importing | TYPE /BOBF/T_FRW_KEY | Table of condition GUIDs, alternative to IT_COND_ID | |
| IT_COND_ROOT | Importing | TYPE /SCMTMS/T_CONDITION_HEADER_K | BO Condition Root Node (condition Header) | |
| IT_DO_BO | Importing | TYPE /SCMTMS/T_COND_DO_DATA_K | Data Object Data | |
| IV_DO_NOT_RETURN_NO_HITS | Importing | TYPE ABAP_BOOL | Do not return conditions with no result | |
| IV_RETURN_VALUE_NO_HIT | Importing | TYPE CHAR128 | Value that should be reutned in case of not hit in condition | |
| ET_BOKEY_COND_RESULT | Exporting | TYPE /SCMTMS/T_BOID_COND_RESULT | BOID, Condition and result | |
| CO_MESSAGE | Changing | TYPE REF TO /BOBF/IF_FRW_MESSAGE | Interface of Message Object |
Exceptions of Method GET_RESULT_BRF
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lv_CO_MESSAGE TYPE /BOBF/IF_FRW_MESSAGE,
lv_ET_BOKEY_COND_RESULT TYPE /SCMTMS/T_BOID_COND_RESULT,
lv_IT_BOINST_KEY TYPE /BOBF/T_FRW_KEY,
lv_IT_BOKEY_DOKEY_DATA TYPE /SCMTMS/T_BOKEY_DOKEY_DATA,
lv_IT_COND_KEY TYPE /BOBF/T_FRW_KEY,
lv_IT_COND_ROOT TYPE /SCMTMS/T_CONDITION_HEADER_K,
lv_IT_DO_BO TYPE /SCMTMS/T_COND_DO_DATA_K,
lv_IV_DO_NOT_RETURN_NO_HITS TYPE ABAP_BOOL,
lv_IV_RETURN_VALUE_NO_HIT TYPE CHAR128,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_COND_OL=>GET_RESULT_BRF(
EXPORTING
IT_BOINST_KEY = lv_IT_BOINST_KEY
IT_BOKEY_DOKEY_DATA = lv_IT_BOKEY_DOKEY_DATA
IT_COND_KEY = lv_IT_COND_KEY
IT_COND_ROOT = lv_IT_COND_ROOT
IT_DO_BO = lv_IT_DO_BO
IV_DO_NOT_RETURN_NO_HITS = lv_IV_DO_NOT_RETURN_NO_HITS
IV_RETURN_VALUE_NO_HIT = lv_IV_RETURN_VALUE_NO_HIT
IMPORTING
ET_BOKEY_COND_RESULT = lv_ET_BOKEY_COND_RESULT
CHANGING
CO_MESSAGE = lv_CO_MESSAGE ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects