58. Easy-to-understand SAP ABAP Session Management concept explanation, including specific examples

The steps before this tutorial show you how to open the ABAP help document through the F1 shortcut key:

In the open ABAP help document, enter the keyword session and press Enter:

We can see the following search results interface, double-click in the results list session:

Then you can see the following architecture diagram.

This picture conveys many concepts. In this step, we need to master three concepts related to session management:

  • User Session is the user session
  • ABAP Session, ABAP session. A user session can contain multiple ABAP sessions.
  • Internal Session, internal session. An ABAP session can contain multiple internal sessions.

user session

Every time we use SAPGUI to log in to the ABAP system, a new user session is generated. These newly generated user sessions can be seen in transaction code SM04.

Guess you like

Origin blog.csdn.net/i042416/article/details/127360829