LIS_UI_INT_GET_GLOBAL_INFOS is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name LIS_UI_INT_GET_GLOBAL_INFOS into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
LIS_UI
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'LIS_UI_INT_GET_GLOBAL_INFOS' "
IMPORTING
ev_ctrl_lines = " i
es_lisverb_0100 = " lisconns LIS Connections: Global Information for TREE_CONNECTIONS
et_system = " lissystems LIS: Tables of Systems
et_systemt = " lissystemts LIS: System Short Texts
et_logsys = " elislogsyss LIS: Logical Systems
et_comdes = " liscomdess LIS: Table Type of LISCOMDES
et_comdesc = " liscomdescs LIS: Distinct Landscapes
et_comdesp = " liscomdesps LIS: User Table of Profiles
et_comdesu = " liscomdesus LIS: User Table
et_params = " lisparamss LIS: Additional Parameters for Systems
et_syscom = " lissyscoms LIS: System Components
et_conne_templates = " liscon_tmps LIS: Table Type of LISCON_TMP
et_conne_templ_def = " liscon_tmps LIS: Table Type of LISCON_TMP
CHANGING
cv_subscr_dynnr = " dynpronr Screen Number
. " LIS_UI_INT_GET_GLOBAL_INFOS
The ABAP code below is a full code listing to execute function module LIS_UI_INT_GET_GLOBAL_INFOS including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| ld_ev_ctrl_lines | TYPE I , |
| ld_es_lisverb_0100 | TYPE LISCONNS , |
| ld_et_system | TYPE LISSYSTEMS , |
| ld_et_systemt | TYPE LISSYSTEMTS , |
| ld_et_logsys | TYPE ELISLOGSYSS , |
| ld_et_comdes | TYPE LISCOMDESS , |
| ld_et_comdesc | TYPE LISCOMDESCS , |
| ld_et_comdesp | TYPE LISCOMDESPS , |
| ld_et_comdesu | TYPE LISCOMDESUS , |
| ld_et_params | TYPE LISPARAMSS , |
| ld_et_syscom | TYPE LISSYSCOMS , |
| ld_et_conne_templates | TYPE LISCON_TMPS , |
| ld_et_conne_templ_def | TYPE LISCON_TMPS . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_cv_subscr_dynnr | TYPE DYNPRONR , |
| ld_ev_ctrl_lines | TYPE I , |
| ld_es_lisverb_0100 | TYPE LISCONNS , |
| ld_et_system | TYPE LISSYSTEMS , |
| ld_et_systemt | TYPE LISSYSTEMTS , |
| ld_et_logsys | TYPE ELISLOGSYSS , |
| ld_et_comdes | TYPE LISCOMDESS , |
| ld_et_comdesc | TYPE LISCOMDESCS , |
| ld_et_comdesp | TYPE LISCOMDESPS , |
| ld_et_comdesu | TYPE LISCOMDESUS , |
| ld_et_params | TYPE LISPARAMSS , |
| ld_et_syscom | TYPE LISSYSCOMS , |
| ld_et_conne_templates | TYPE LISCON_TMPS , |
| ld_et_conne_templ_def | TYPE LISCON_TMPS . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name LIS_UI_INT_GET_GLOBAL_INFOS or its description.