APPDESCRIPTORS_UPDATE_ENTITY SAP Method Related EntitySet Name: AppDescriptors









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

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


Parameters of Method APPDESCRIPTORS_UPDATE_ENTITY

.

NameTypeData TypeDescriptionDefault Value
IO_DATA_PROVIDERImportingTYPE REF TO
/IWBEP/IF_MGW_ENTRY_PROVIDER
MGW Entry Data Provider
IO_TECH_REQUEST_CONTEXTImportingTYPE REF TO
/IWBEP/IF_MGW_REQ_ENTITY_U
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
IV_ENTITY_NAMEImportingTYPE
STRING
IV_ENTITY_SET_NAMEImportingTYPE
STRING
IV_SOURCE_NAMEImportingTYPE
STRING
ER_ENTITYExportingTYPE
/SSB/CL_SB_RUNTIME_MPC=>TS_APPDESCRIPTOR
Returning data



Exceptions of Method APPDESCRIPTORS_UPDATE_ENTITY

/IWBEP/CX_MGW_TECH_EXCEPTION - mgw technical exception

Example ABAP coding


DATA: lo_class TYPE REF TO /SSB/CL_SB_RUNTIME_DPC.
DATA: lv_ER_ENTITY TYPE /SSB/CL_SB_RUNTIME_MPC=>TS_APPDESCRIPTOR,
lv_IO_DATA_PROVIDER TYPE /IWBEP/IF_MGW_ENTRY_PROVIDER,
lv_IO_TECH_REQUEST_CONTEXT TYPE /IWBEP/IF_MGW_REQ_ENTITY_U,
lv_IT_KEY_TAB TYPE /IWBEP/T_MGW_NAME_VALUE_PAIR,
lv_IT_NAVIGATION_PATH TYPE /IWBEP/T_MGW_NAVIGATION_PATH,
lv_IV_ENTITY_NAME TYPE STRING,
lv_IV_ENTITY_SET_NAME TYPE STRING,
lv_IV_SOURCE_NAME TYPE STRING,
lv_other TYPE c.

CALL METHOD lo_class=>APPDESCRIPTORS_UPDATE_ENTITY(
EXPORTING
IO_DATA_PROVIDER = lv_IO_DATA_PROVIDER
IO_TECH_REQUEST_CONTEXT = lv_IO_TECH_REQUEST_CONTEXT
IT_KEY_TAB = lv_IT_KEY_TAB
IT_NAVIGATION_PATH = lv_IT_NAVIGATION_PATH
IV_ENTITY_NAME = lv_IV_ENTITY_NAME
IV_ENTITY_SET_NAME = lv_IV_ENTITY_SET_NAME
IV_SOURCE_NAME = lv_IV_SOURCE_NAME
IMPORTING
ER_ENTITY = lv_ER_ENTITY ).

Links to Related Class(s)

/SSB/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!