‎2007 Mar 04 6:56 PM
Hi Friends,
I know that SYST is a Structure in SAP. Can you please tell me to which table it is associated(appended)?
Regards,
Ram
‎2007 Mar 04 6:58 PM
It is not a table.. It is a structure whose fields will be populated at runtime..ex
sy-datum -- system date
sy-uzeit - system time
sy-uname - SAP username
etc..
~Suresh
‎2007 Mar 04 8:57 PM
The syst structure is for data exchange of ABAP / Dynpro runtime and does not reflect any db content. BTW for heaven sake do not modify the syst definition, or you will see your R/3 system die under your hands.
Regards,
Klaus
‎2007 Mar 05 1:15 AM
hi,
ABAP system fields are always available in ABAP programs. The runtime system fills them according to context. They can then be used in programs to query the system status. System fields are variables but you should always treat them as though they were constants, and only read them. If you change their values, important information for the flow of the program may be lost. In exceptional circumstances, system fields may be overwritten in an ABAP program to control the system for example, SY-LSIND (for navigating to a detail list).
With one exception the names and data types of the system fields are stored in the ABAP Dictionary in the SYST structure and realized as components of the predefined structure SY in ABAP programs.
regards,
keerthi
‎2007 Mar 05 3:19 AM
hi
good
go through this link
http://help.sap.com/saphelp_nw2004s/helpdata/en/7b/fb96c8882811d295a90000e8353423/content.htm
thanks
mrutyun^
‎2007 Mar 05 4:28 AM
Hi,
REPORT ZBCTCB93 NO STANDARD PAGE HEADING.
DETAIL.
WRITE: /5 'Logon name of the user: ' RIGHT-JUSTIFIED, 40 SY-UNAME.
WRITE: /5 'Logon client: ' RIGHT-JUSTIFIED, 40 SY-MANDT.
WRITE: /5 'Logon language: ' RIGHT-JUSTIFIED, 40 SY-LANGU.
WRITE: /5 'Current date: ' RIGHT-JUSTIFIED, 40 SY-DATUM.
WRITE: /5 'Current time: ' RIGHT-JUSTIFIED, 40 SY-UZEIT.
WRITE: /5 'Current transaction: ' RIGHT-JUSTIFIED, 40 SY-TCODE.
WRITE: /5 'Main program: ' RIGHT-JUSTIFIED, 40 SY-CPROG.
SKIP.
WRITE: /5 'SAP System ID: ' RIGHT-JUSTIFIED, 40 SY-SYSID.
WRITE: /5 'SAP Release: ' RIGHT-JUSTIFIED, 40 SY-SAPRL.
WRITE: /5 'Host: ' RIGHT-JUSTIFIED, 40 SY-HOST.
WRITE: /5 'Operating system: ' RIGHT-JUSTIFIED, 40 SY-OPSYS.
WRITE: /5 'Database system: ' RIGHT-JUSTIFIED, 40 SY-DBSYS.
SKIP TO LINE 20. POSITION 10.
WRITE: SY-COLNO, ',', SY-LINNO, 'Cursor position (column, row).'.
WRITE: 'New:', SY-COLNO,',',SY-LINNO.
SKIP.
SY-ULINE = '------ Underline ------'.
ULINE (23).
WRITE: /5 'Vertical bar:', SY-VLINE.
TOP-OF-PAGE.
DETAIL.
WRITE: 2 'Report Title: ', SY-TITLE(20).
WRITE: 'Page Number: ', SY-PAGNO.
SKIP.
Try debugging teh sample code and see.
SYST is a structure.