2008 Apr 03 12:32 PM
Hi.
I know there is a User-exit that is executed during the login and can be used to ban users.
I'm looking for a way to tell the SAPGUI version during this User-exit.
Thanks everybody.
ayal.
2008 Apr 03 12:52 PM
Hi Ayal,
Try this
REPORT YCHATEST .
DATA : VER(10).
CALL FUNCTION 'DSVAS_RPGEN_SAPGUI_VERSION_GET'
IMPORTING
PF_VERSION = VER.
WRITE : VER.
Hi.
I know there is a User-exit that is executed during the login and can be used to ban users.
I'm looking for a way to tell the SAPGUI version during this User-exit.
Thanks everybody.
ayal.
2008 Apr 03 12:42 PM
CL_GUI_FRONTEND_SERVICES=>GET_GUI_PROPERTIES.
sorry should be:
CL_GUI_FRONTEND_SERVICES=>GET_GUI_VERSION
Edited by: Micky Oestreich on Apr 3, 2008 1:43 PM
2008 Apr 03 12:45 PM
2008 Apr 03 12:50 PM
hi,
GUI_GET_DESKTOP_INFO Returns information about the end-users desktop
Hope this helps, Do reward.
2008 Apr 03 12:50 PM
Hi,
try this:
DATA: VTABLE TYPE TABLE OF FILE_TABLE.
DATA: RC LIKE SY-SUBRC.
*
CALL METHOD CL_GUI_FRONTEND_SERVICES=>GET_GUI_VERSION
CHANGING
VERSION_TABLE = VTABLE
RC = RC.
*
Regards, Dieter
2008 Apr 03 12:52 PM
2008 Apr 03 12:52 PM
Hi Ayal,
Try this
REPORT YCHATEST .
DATA : VER(10).
CALL FUNCTION 'DSVAS_RPGEN_SAPGUI_VERSION_GET'
IMPORTING
PF_VERSION = VER.
WRITE : VER.
2008 Apr 03 12:56 PM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |