CALL_CONTEXT_SELECTION SAP Method of class /BCV/IWCI_WDC_CFG_CONTEXT









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

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


Parameters of Method CALL_CONTEXT_SELECTION

.

NameTypeData TypeDescriptionDefault Value
IT_CONTEXT_TABLEImportingTYPE
/BCV/T_CFG_CONTEXT
IV_DISPLAY_IDImportingTYPE
/BCV/UIF_DISPLAY_ID
IV_OBJECT_TYPEImportingTYPE
/BCV/FND_OBJECT_TYPE
IV_QUERY_IDImportingTYPE
/BCV/QRM_QUERY_ID
IV_QVIEW_IDImportingTYPE
/BCV/UIF_QVIEW_ID
EF_FAILEDExportingTYPE
WDY_BOOLEAN



Exceptions of Method CALL_CONTEXT_SELECTION

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BCV/IWCI_WDC_CFG_CONTEXT.
DATA: lv_EF_FAILED TYPE WDY_BOOLEAN,
lv_IT_CONTEXT_TABLE TYPE /BCV/T_CFG_CONTEXT,
lv_IV_DISPLAY_ID TYPE /BCV/UIF_DISPLAY_ID,
lv_IV_OBJECT_TYPE TYPE /BCV/FND_OBJECT_TYPE,
lv_IV_QUERY_ID TYPE /BCV/QRM_QUERY_ID,
lv_IV_QVIEW_ID TYPE /BCV/UIF_QVIEW_ID,
lv_other TYPE c.

CALL METHOD lo_class=>CALL_CONTEXT_SELECTION(
EXPORTING
IT_CONTEXT_TABLE = lv_IT_CONTEXT_TABLE
IV_DISPLAY_ID = lv_IV_DISPLAY_ID
IV_OBJECT_TYPE = lv_IV_OBJECT_TYPE
IV_QUERY_ID = lv_IV_QUERY_ID
IV_QVIEW_ID = lv_IV_QVIEW_ID
IMPORTING
EF_FAILED = lv_EF_FAILED ).

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!