GET_RUNTIME_MODEL SAP Method Reads the meta data of the model









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

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


Parameters of Method GET_RUNTIME_MODEL

.

NameTypeData TypeDescriptionDefault Value
IO_CONFImportingTYPE REF TO
/BOBF/IF_CONFRT_COMPLETE
Host Object Configuration
IV_HOST_BO_KEYImportingTYPE
/BOBF/OBM_BO_KEY
Business Object
IV_NODE_KEYImportingTYPE
/BOBF/OBM_NODE_KEY
Node
EO_DO_CONFExportingTYPE REF TO
/BOBF/IF_CONFRT_COMPLETE
Configuration runtime data complete
ET_ACTIONExportingTYPE
/BOBF/T_CONFDO_ACTION
Obsolet
ET_ALTKEYExportingTYPE
/BOBF/T_CONFDO_ALTKEY
Obsolet
ET_ASSOCIATIONExportingTYPE
/BOBF/T_CONFDO_ASSOC
Obsolet
ET_NODEExportingTYPE
/BOBF/T_CONFDO_NODE
Obsolet
ET_QUERYExportingTYPE
/BOBF/T_CONFDO_QUERY
Obsolet
ET_VSETExportingTYPE
/BOBF/T_CONFDO_VALUE_SET
Obsolet



Exceptions of Method GET_RUNTIME_MODEL

/BOBF/CX_FRW - BOPF Exception Class

Example ABAP coding


DATA: lv_EO_DO_CONF TYPE /BOBF/IF_CONFRT_COMPLETE,
lv_ET_ACTION TYPE /BOBF/T_CONFDO_ACTION,
lv_ET_ALTKEY TYPE /BOBF/T_CONFDO_ALTKEY,
lv_ET_ASSOCIATION TYPE /BOBF/T_CONFDO_ASSOC,
lv_ET_NODE TYPE /BOBF/T_CONFDO_NODE,
lv_ET_QUERY TYPE /BOBF/T_CONFDO_QUERY,
lv_ET_VSET TYPE /BOBF/T_CONFDO_VALUE_SET,
lv_IO_CONF TYPE /BOBF/IF_CONFRT_COMPLETE,
lv_IV_HOST_BO_KEY TYPE /BOBF/OBM_BO_KEY,
lv_IV_NODE_KEY TYPE /BOBF/OBM_NODE_KEY,
lv_other TYPE c.

CALL METHOD /BOBF/IF_FRW_DELEGATION=>GET_RUNTIME_MODEL(
EXPORTING
IO_CONF = lv_IO_CONF
IV_HOST_BO_KEY = lv_IV_HOST_BO_KEY
IV_NODE_KEY = lv_IV_NODE_KEY
IMPORTING
EO_DO_CONF = lv_EO_DO_CONF
ET_ACTION = lv_ET_ACTION
ET_ALTKEY = lv_ET_ALTKEY
ET_ASSOCIATION = lv_ET_ASSOCIATION
ET_NODE = lv_ET_NODE
ET_QUERY = lv_ET_QUERY
ET_VSET = lv_ET_VSET ).

Links to Related Class(s)

/BOBF/IF...
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!