GET_SCR_CONTROL_FOR_UCOMM SAP Method Returns the Control Screen for a User Command
Below is documentation, parameters and attributes of ABAP Method GET_SCR_CONTROL_FOR_UCOMM within SAP class CL_ISH_UTL_SCREEN. 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_ISH_UTL_SCREEN 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 GET_SCR_CONTROL_FOR_UCOMM can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_SCR_CONTROL_FOR_UCOMM
.| Name | Type | Data Type | Description | Default Value |
| IT_SCREEN | Importing | TYPE ISH_T_SCREEN_OBJECTS | IS-H: Table with Various Screen Objects | |
| I_UCOMM | Importing | TYPE SY-UCOMM | Function Code that Triggered PAI | |
| RR_SCR_CONTROL | Returning | TYPE REF TO IF_ISH_SCR_CONTROL | IS-H: Interface for Control Screens |
Exceptions of Method GET_SCR_CONTROL_FOR_UCOMM
This method does not have any exceptionsExample ABAP coding
DATA: lv_IT_SCREEN TYPE ISH_T_SCREEN_OBJECTS,
lv_I_UCOMM TYPE SY-UCOMM,
lv_RR_SCR_CONTROL TYPE IF_ISH_SCR_CONTROL,
lv_other TYPE c.
CALL METHOD CL_ISH_UTL_SCREEN=>GET_SCR_CONTROL_FOR_UCOMM(
EXPORTING
IT_SCREEN = lv_IT_SCREEN
I_UCOMM = lv_I_UCOMM
RECEIVING
RR_SCR_CONTROL = lv_RR_SCR_CONTROL )
"Alternate coding for Method Call with returning parameter
lv_RR_SCR_CONTROL = CL_ISH_UTL_SCREEN=>GET_SCR_CONTROL_FOR_UCOMM(
EXPORTING
IT_SCREEN = lv_IT_SCREEN
I_UCOMM = lv_I_UCOMM ).
Links to Related Class(s)
CL_ISH_U...Full list of available SAP object classes
Search for further information about these or an SAP related objects