CREATE_BO_RETRIEVE_EXPR SAP Method of class /BOFU/CL_FDT_GTC_RETRIEVE_BO
Below is documentation, parameters and attributes of ABAP Method CREATE_BO_RETRIEVE_EXPR within SAP class /BOFU/CL_FDT_GTC_RETRIEVE_BO. 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_FDT_GTC_RETRIEVE_BO 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 CREATE_BO_RETRIEVE_EXPR can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CREATE_BO_RETRIEVE_EXPR
.| Name | Type | Data Type | Description | Default Value |
| IV_APPLICATION_ID | Importing | TYPE IF_FDT_TYPES=>ID | ||
| IV_DDIC_RETURN_TYPE | Importing | TYPE CSEQUENCE | ||
| RE_BO_RTR_EXPRESSION | Returning | TYPE REF TO /BOFU/IF_FDT_RETRIEVE | Retrieve from BOPF BO: BRFplus Express Type |
Exceptions of Method CREATE_BO_RETRIEVE_EXPR
CX_FDT_INPUT -Example ABAP coding
DATA: lv_IV_APPLICATION_ID TYPE IF_FDT_TYPES=>ID,
lv_IV_DDIC_RETURN_TYPE TYPE CSEQUENCE,
lv_RE_BO_RTR_EXPRESSION TYPE /BOFU/IF_FDT_RETRIEVE,
lv_other TYPE c.
CALL METHOD /BOFU/CL_FDT_GTC_RETRIEVE_BO=>CREATE_BO_RETRIEVE_EXPR(
EXPORTING
IV_APPLICATION_ID = lv_IV_APPLICATION_ID
IV_DDIC_RETURN_TYPE = lv_IV_DDIC_RETURN_TYPE
RECEIVING
RE_BO_RTR_EXPRESSION = lv_RE_BO_RTR_EXPRESSION )
"Alternate coding for Method Call with returning parameter
lv_RE_BO_RTR_EXPRESSION = /BOFU/CL_FDT_GTC_RETRIEVE_BO=>CREATE_BO_RETRIEVE_EXPR(
EXPORTING
IV_APPLICATION_ID = lv_IV_APPLICATION_ID
IV_DDIC_RETURN_TYPE = lv_IV_DDIC_RETURN_TYPE ).
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