0% found this document useful (0 votes)
32 views1 page

System Variable 7

ABAP system variables provide information about the state of the SAP system and are accessible from all ABAP programs. They are populated by the runtime environment and contain data like the client, user, date and time. The complete list of ABAP system variables can be found in the SYST table in SAP.

Uploaded by

Vikram Bigamudre
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views1 page

System Variable 7

ABAP system variables provide information about the state of the SAP system and are accessible from all ABAP programs. They are populated by the runtime environment and contain data like the client, user, date and time. The complete list of ABAP system variables can be found in the SYST table in SAP.

Uploaded by

Vikram Bigamudre
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

ABAP system variables is accessible from all ABAP programs. These fields are filled by the runtime environment.

The values in these fields indicate the state of the system at any given point of time. The complete list of ABAP system variables is found in the SYST table in SAP. Individual fields of the SYST structure can be accessed either using SYST- or SY-.
WRITE:/ WRITE:/ WRITE:/ WRITE:/ WRITE:/ 'ABAP System Variables'. 'Client : ', sy-mandt. 'User : ', sy-uname. 'Date : ', sy-datum. 'Time : ', sy-uzeit.

Output

You might also like