CALL_POPUP SAP Method of class /BCV/IWCI_WDC_UIF_POP_SSHOT_D









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

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


Parameters of Method CALL_POPUP

.

NameTypeData TypeDescriptionDefault Value
IT_SNAPSHOTImportingTYPE
/BCV/T_UIF_SNAPSHOT
IV_CHIP_INSTANCE_IDImportingTYPE
STRING
IV_DASHB_ONLYImportingTYPE
BOOLE_D
IV_EXPLANATIONImportingTYPE
STRING
IV_MIN_DELImportingTYPE
INT4
IV_MODEImportingTYPE
/BCV/CL_UIF_COMMON_ASSIST=>TY_MAINT_MODE
IV_QVIEW_ONLYImportingTYPE
BOOLE_D
IV_SHOW_ICONImportingTYPE
BOOLE_D



Exceptions of Method CALL_POPUP

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BCV/IWCI_WDC_UIF_POP_SSHOT_D.
DATA: lv_IT_SNAPSHOT TYPE /BCV/T_UIF_SNAPSHOT,
lv_IV_CHIP_INSTANCE_ID TYPE STRING,
lv_IV_DASHB_ONLY TYPE BOOLE_D,
lv_IV_EXPLANATION TYPE STRING,
lv_IV_MIN_DEL TYPE INT4,
lv_IV_MODE TYPE /BCV/CL_UIF_COMMON_ASSIST=>TY_MAINT_MODE,
lv_IV_QVIEW_ONLY TYPE BOOLE_D,
lv_IV_SHOW_ICON TYPE BOOLE_D,
lv_other TYPE c.

CALL METHOD lo_class=>CALL_POPUP(
EXPORTING
IT_SNAPSHOT = lv_IT_SNAPSHOT
IV_CHIP_INSTANCE_ID = lv_IV_CHIP_INSTANCE_ID
IV_DASHB_ONLY = lv_IV_DASHB_ONLY
IV_EXPLANATION = lv_IV_EXPLANATION
IV_MIN_DEL = lv_IV_MIN_DEL
IV_MODE = lv_IV_MODE
IV_QVIEW_ONLY = lv_IV_QVIEW_ONLY
IV_SHOW_ICON = lv_IV_SHOW_ICON ).

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!