SHOW SAP Method Show messages









Below is documentation, parameters and attributes of ABAP Method SHOW within SAP class CL_STCTM_MESSAGE_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 CL_STCTM_MESSAGE_DISPLAY 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 SHOW can also be found below:

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


Parameters of Method SHOW

.

NameTypeData TypeDescriptionDefault Value
IR_CONTAINERImportingTYPE REF TO
CL_GUI_CONTAINER
Your Container
IR_MESSAGESImportingTYPE REF TO
CL_STCTM_MESSAGES
Task List Messages
I_AMODALImportingTYPE
BOOLEAN
Local popup: Modal or Amodal
I_AUTOWIDTHImportingTYPE
BOOLEAN
Optimize display
I_CAPTIONImportingTYPE
TEXT70
Caption
I_CONTAINERNAMEImportingTYPE
C
Your Container Name
I_END_COLImportingTYPE
BALCOORD
Local popup: end column
I_END_ROWImportingTYPE
BALCOORD
Local popup: end row
I_START_COLImportingTYPE
BALCOORD
Local popup: start column
I_START_ROWImportingTYPE
BALCOORD
Local popup: start row



Exceptions of Method SHOW

This method does not have any exceptions

Example ABAP coding


DATA: lv_IR_CONTAINER TYPE CL_GUI_CONTAINER,
lv_IR_MESSAGES TYPE CL_STCTM_MESSAGES,
lv_I_AMODAL TYPE BOOLEAN,
lv_I_AUTOWIDTH TYPE BOOLEAN,
lv_I_CAPTION TYPE TEXT70,
lv_I_CONTAINERNAME TYPE C,
lv_I_END_COL TYPE BALCOORD,
lv_I_END_ROW TYPE BALCOORD,
lv_I_START_COL TYPE BALCOORD,
lv_I_START_ROW TYPE BALCOORD,
lv_other TYPE c.

CALL METHOD CL_STCTM_MESSAGE_DISPLAY=>SHOW(
EXPORTING
IR_CONTAINER = lv_IR_CONTAINER
IR_MESSAGES = lv_IR_MESSAGES
I_AMODAL = lv_I_AMODAL
I_AUTOWIDTH = lv_I_AUTOWIDTH
I_CAPTION = lv_I_CAPTION
I_CONTAINERNAME = lv_I_CONTAINERNAME
I_END_COL = lv_I_END_COL
I_END_ROW = lv_I_END_ROW
I_START_COL = lv_I_START_COL
I_START_ROW = lv_I_START_ROW ).

Links to Related Class(s)

CL_STCTM...
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!