Entering content frame

Background documentation CONNECTEDUSERS Locate the document in its SAP Library structure

Using the system table CONNECTEDUSERS, you can determine the following database information, among other things:

·        All currently logged-on users and the terminal used by the user in question
SELECT username, termid
  FROM DOMAIN.CONNECTEDUSERS

·        Name of the terminal that the user logged on to
SELECT termid
  FROM DOMAIN.CONNECTEDUSERS cu, DOMAIN.CONNECTPARAMETERS cp
    WHERE cu.session = cp.session

Note

All defined users: see USERS

 

Leaving content frame