‎2007 Apr 11 3:48 PM
Hi,
I am working on one of the requirement where I am using the Function Module,TH_LONG_USR_INFO, but some requirement I am not able to complete with this Function Module,
Kindly let me know if any knows the alternate Function Module for TH_LONG_USR_INFO which includes all the Import / Export Parameters alongwith some additional.
Your inputs are appreciated in this regard.
Thanks
Prasad Ganegaonkar.
‎2007 Apr 11 4:02 PM
Hi,
you can use
DATA: GUITYPE TYPE I VALUE 5,
GUIRETURN(20).
CALL FUNCTION 'GUI_GET_DESKTOP_INFO'
EXPORTING
TYPE = GUITYPE
CHANGING
RETURN = GUIRETURN.
WRITE:/ GUIRETURN.
<b>
This function is platform-specific and should therefore be used with care.
</b>
or try to use
fm TERMINAL_ID_GET or fm TH_USER_INFO.
aRs