Skip to Content
0
Former Member
Jan 21, 2011 at 04:34 AM

Abort the user seeion as in SM04

85 Views

I have a requirement for that particular user is we click it has to display what all the sessions the particular user has opened in pop up list and if we click on particular session it has to abort that particular session

I have used the following FM in my code :

CALL FUNCTION 'TH_LONG_USR_INFO'

EXPORTING

user = lv_guname

TABLES

user_info = gt_user_info[]

EXCEPTIONS

OTHERS = 1.

CALL FUNCTION 'TH_DELETE_MODE'

EXPORTING

mode = mode.

actually this is working but its closing the session of the current login if I select another cross login its not terminating the session of that Login.

Please anyone can help me with this issue.