EXCHANGE_CONTENT SAP Method of class /BCV/IWCI_WDC_UIF_GEN_DISPLAY









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

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


Parameters of Method EXCHANGE_CONTENT

.

NameTypeData TypeDescriptionDefault Value
IV_CONTEXT_KEYImportingTYPE
/BCV/FND_CONTEXT_KEY
IV_DISPLAY_ID1ImportingTYPE
/BCV/UIF_DISPLAY_ID
IV_DISPLAY_ID2ImportingTYPE
/BCV/UIF_DISPLAY_ID
IV_DISPLAY_TYPEImportingTYPE
/BCV/UIF_SHOW_TYPE
IV_ENVMT_INFOImportingTYPE
/BCV/UIF_OUTPUT_TYPE
IV_QVIEW_IDImportingTYPE
/BCV/UIF_QVIEW_ID
IV_SNAPSHOT_IDImportingTYPE
/BCV/UIF_SNAPSHOT_ID
IV_SYSALIASImportingTYPE
CHAR80
IV_VARIANT_IDImportingTYPE
GUID



Exceptions of Method EXCHANGE_CONTENT

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BCV/IWCI_WDC_UIF_GEN_DISPLAY.
DATA: lv_IV_CONTEXT_KEY TYPE /BCV/FND_CONTEXT_KEY,
lv_IV_DISPLAY_ID1 TYPE /BCV/UIF_DISPLAY_ID,
lv_IV_DISPLAY_ID2 TYPE /BCV/UIF_DISPLAY_ID,
lv_IV_DISPLAY_TYPE TYPE /BCV/UIF_SHOW_TYPE,
lv_IV_ENVMT_INFO TYPE /BCV/UIF_OUTPUT_TYPE,
lv_IV_QVIEW_ID TYPE /BCV/UIF_QVIEW_ID,
lv_IV_SNAPSHOT_ID TYPE /BCV/UIF_SNAPSHOT_ID,
lv_IV_SYSALIAS TYPE CHAR80,
lv_IV_VARIANT_ID TYPE GUID,
lv_other TYPE c.

CALL METHOD lo_class=>EXCHANGE_CONTENT(
EXPORTING
IV_CONTEXT_KEY = lv_IV_CONTEXT_KEY
IV_DISPLAY_ID1 = lv_IV_DISPLAY_ID1
IV_DISPLAY_ID2 = lv_IV_DISPLAY_ID2
IV_DISPLAY_TYPE = lv_IV_DISPLAY_TYPE
IV_ENVMT_INFO = lv_IV_ENVMT_INFO
IV_QVIEW_ID = lv_IV_QVIEW_ID
IV_SNAPSHOT_ID = lv_IV_SNAPSHOT_ID
IV_SYSALIAS = lv_IV_SYSALIAS
IV_VARIANT_ID = lv_IV_VARIANT_ID ).

Links to Related Class(s)

/BCV/IWC...
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!