GET_DATA_FOR_BO SAP Method Get Data for BO









Below is documentation, parameters and attributes of ABAP Method GET_DATA_FOR_BO within SAP class /BOFU/CL_GBI_ADAPTER. 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_GBI_ADAPTER 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 directly

The following technical details of method GET_DATA_FOR_BO can also be found below:

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


Parameters of Method GET_DATA_FOR_BO

.

NameTypeData TypeDescriptionDefault Value
IS_PAGINGImportingTYPE
/IWBEP/S_MGW_PAGING
paging structure
IT_FILTER_SELECT_OPTIONSImportingTYPE
/IWBEP/T_MGW_SELECT_OPTION
table of select options
IT_KEY_TABImportingTYPE
/IWBEP/T_MGW_NAME_VALUE_PAIR
table for name value pairs
IT_NAVIGATION_PATHImportingTYPE
/IWBEP/T_MGW_NAVIGATION_PATH
table of navigation paths
IT_ORDERImportingTYPE
/IWBEP/T_MGW_SORTING_ORDER
the sorting order
IV_BOImportingTYPE
/BOFU/BO
Business Object
IV_ENTITY_NAMEImportingTYPE
STRING
IV_FILTER_STRINGImportingTYPE
STRING
IV_QUERY_KEYImportingTYPE
/BOBF/OBM_QUERY_KEY
Query
IV_SOURCE_NAMEImportingTYPE
STRING
ER_ENTITYSETExportingTYPE REF TO
DATA



Exceptions of Method GET_DATA_FOR_BO

This method does not have any exceptions

Example ABAP coding


DATA: lv_ER_ENTITYSET TYPE DATA,
lv_IS_PAGING TYPE /IWBEP/S_MGW_PAGING,
lv_IT_FILTER_SELECT_OPTIONS TYPE /IWBEP/T_MGW_SELECT_OPTION,
lv_IT_KEY_TAB TYPE /IWBEP/T_MGW_NAME_VALUE_PAIR,
lv_IT_NAVIGATION_PATH TYPE /IWBEP/T_MGW_NAVIGATION_PATH,
lv_IT_ORDER TYPE /IWBEP/T_MGW_SORTING_ORDER,
lv_IV_BO TYPE /BOFU/BO,
lv_IV_ENTITY_NAME TYPE STRING,
lv_IV_FILTER_STRING TYPE STRING,
lv_IV_QUERY_KEY TYPE /BOBF/OBM_QUERY_KEY,
lv_IV_SOURCE_NAME TYPE STRING,
lv_other TYPE c.

CALL METHOD /BOFU/CL_GBI_ADAPTER=>GET_DATA_FOR_BO(
EXPORTING
IS_PAGING = lv_IS_PAGING
IT_FILTER_SELECT_OPTIONS = lv_IT_FILTER_SELECT_OPTIONS
IT_KEY_TAB = lv_IT_KEY_TAB
IT_NAVIGATION_PATH = lv_IT_NAVIGATION_PATH
IT_ORDER = lv_IT_ORDER
IV_BO = lv_IV_BO
IV_ENTITY_NAME = lv_IV_ENTITY_NAME
IV_FILTER_STRING = lv_IV_FILTER_STRING
IV_QUERY_KEY = lv_IV_QUERY_KEY
IV_SOURCE_NAME = lv_IV_SOURCE_NAME
IMPORTING
ER_ENTITYSET = lv_ER_ENTITYSET ).

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!