OPEN_DIALOG SAP Method Show Legend dialog
Below is documentation, parameters and attributes of ABAP Method OPEN_DIALOG within SAP class /SCMB/CL_MAP_UI_D_LEGEND. 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 /SCMB/CL_MAP_UI_D_LEGEND 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 directlyThe following technical details of method OPEN_DIALOG can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method OPEN_DIALOG
.| Name | Type | Data Type | Description | Default Value |
| IT_LEGEND | Importing | TYPE /SCMB/T_MAP_D_DISPLAY_LEGEND | Geo-Map: Dialog to show legend | |
| IV_CONTENT_AREA_ID | Importing | TYPE FPM_CONTENT_AREA_ID | FPM: Content Area ID | |
| IV_PAGE_ID | Importing | TYPE STRING | Page ID for dialog |
Exceptions of Method OPEN_DIALOG
This method does not have any exceptionsExample ABAP coding
DATA: lv_IT_LEGEND TYPE /SCMB/T_MAP_D_DISPLAY_LEGEND,
lv_IV_CONTENT_AREA_ID TYPE FPM_CONTENT_AREA_ID,
lv_IV_PAGE_ID TYPE STRING,
lv_other TYPE c.
CALL METHOD /SCMB/CL_MAP_UI_D_LEGEND=>OPEN_DIALOG(
EXPORTING
IT_LEGEND = lv_IT_LEGEND
IV_CONTENT_AREA_ID = lv_IV_CONTENT_AREA_ID
IV_PAGE_ID = lv_IV_PAGE_ID ).
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects