UI_START_COMMUNICATION SAP Method UI: Start Communication
Below is documentation, parameters and attributes of ABAP Method UI_START_COMMUNICATION within SAP class /ISDFPS/CL_LM_FLIGHTEVENT_UI. 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 /ISDFPS/CL_LM_FLIGHTEVENT_UI 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 UI_START_COMMUNICATION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method UI_START_COMMUNICATION
.| Name | Type | Data Type | Description | Default Value |
| I_CONTAINER | Importing | TYPE REF TO CL_GUI_CUSTOM_CONTAINER | Container for Custom Controls in Screen Area | |
| I_FLIGHTEVENTS | Importing | TYPE /ISDFPS/LM_FLI_EVENTS_T | Flight Legs | |
| I_XSHOW_ONLY | Importing | TYPE XFELD | Only Output Mode? |
Exceptions of Method UI_START_COMMUNICATION
/ISDFPS/CX_LM_FLIGHTEVENT_UI - LM: Flight Event UIExample ABAP coding
DATA: lo_class TYPE REF TO /ISDFPS/CL_LM_FLIGHTEVENT_UI.
DATA: lv_I_CONTAINER TYPE CL_GUI_CUSTOM_CONTAINER,
lv_I_FLIGHTEVENTS TYPE /ISDFPS/LM_FLI_EVENTS_T,
lv_I_XSHOW_ONLY TYPE XFELD,
lv_other TYPE c.
CALL METHOD lo_class=>UI_START_COMMUNICATION(
EXPORTING
I_CONTAINER = lv_I_CONTAINER
I_FLIGHTEVENTS = lv_I_FLIGHTEVENTS
I_XSHOW_ONLY = lv_I_XSHOW_ONLY ).
Links to Related Class(s)
/ISDFPS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects