How to Check User Session in SAP AS JAVA

In SAP AS ABAP environment, you can do capture user session from the transaction code SM04 or AL08. But, how about in SAP AS JAVA environment? Here’s the deal,

Launch the SAP NetWeaver Administrator page and go to this navigation step,

Configuration > Infrastructure > Session Management

Alternatively, use the quick link URL.

https://[HOSTNAME]:[PORT]/nwa/sessionmgt

Under User Sessions area, you get a list of all user sessions on AS Java (for example, Administrator, Guest, other user).

In the table, you can view various parameters of a user session:

  • Last Accessed Time –
    • shows the time when a user has last accessed the session.
  • Total Number of Requests
    • represents the sum of the requests of all its cluster sessions.
  • Total Active Requests –
    • shows the sum of all active requests in the cluster sessions. If no cluster session is active – the number for the relevant user session is 0 (zero).
  • Longest Active Request –
    • shows the active/inactive requests and their duration (in milliseconds).
  • Longest Response Time –
    • shows the maximum response time among all cluster sessions.
  • Overall CPU Usage , Overall DB Time , Allocated Memory –
    • analogically as Longest Response Time .
  • Trace Options –
    • shows the options you have chosen when start tracing. For more information, see the ” Tracing Sessions ” procedure below.
  • Profile Result –
    • provides a ZIP file you can download to see the results from the last tracing.

You May Also Like

Leave a Reply?