<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic systems variables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/systems-variables/m-p/3417658#M820834</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what are systems variables ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 23 Feb 2008 10:27:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-23T10:27:38Z</dc:date>
    <item>
      <title>systems variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/systems-variables/m-p/3417658#M820834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what are systems variables ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 10:27:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/systems-variables/m-p/3417658#M820834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-23T10:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: systems variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/systems-variables/m-p/3417659#M820835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The ABAP system fields are active in all ABAP programs. They are filled by the runtime environment, and you can query their values in a program to find out particular states of the system. Although they are variables, you should not assign your own values to them, since this may overwrite information that is important for the normal running of the program. However, there are some isolated cases in which you may need to overwrite a system variable. For example, by assigning a new value to the field SY-LSIND, you can control navigation within details lists.&lt;/P&gt;&lt;P&gt;The names and data types of the system fields are contained in the ABAP Dictionary structure SYST. To address them in an ABAP program, use the form SY-&amp;lt;fieldname&amp;gt;. Within screen flow logic, you can also use the form SYST-&amp;lt;fieldname&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 10:28:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/systems-variables/m-p/3417659#M820835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-23T10:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: systems variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/systems-variables/m-p/3417660#M820836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system variables contain system information. You can use all the system SY fields in CATT. The names of the SY fields are in the Dictionary structure SYST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples of system fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-LANGU (logon language) &lt;/P&gt;&lt;P&gt;SY-UZEIT (current time) &lt;/P&gt;&lt;P&gt;SY-DATUM (current date) &lt;/P&gt;&lt;P&gt;SY-UNAME (user name)&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;swami.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 11:37:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/systems-variables/m-p/3417660#M820836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-23T11:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: systems variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/systems-variables/m-p/3417661#M820837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;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 &amp;#150; for example, SY-LSIND (for navigating to a detail list).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system field SY-REPID is not part of SYST or SY. Instead, every program contains the predefined constants SY-REPID and SYST-REPID, which both contain the name of the corresponding program. Furthermore, there are two predefined types of the same name, SY-REPID and SYST-REPID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All system fields are addressed using SY field name and their types using SYST field name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;here is a list of some important system variables&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; INDEX&lt;/P&gt;&lt;P&gt; SYINDEX&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Loops, number of current pass&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;PAGNO&lt;/P&gt;&lt;P&gt; SYPAGNO&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; List creation, current page&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;TABIX&lt;/P&gt;&lt;P&gt; SYTABIX&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Internal table, current line index&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;TFILL&lt;/P&gt;&lt;P&gt; SYTFILL&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Internal tables, current number of lines&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DBCNT&lt;/P&gt;&lt;P&gt; SYDBCNT&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; DB operations, number of table lines processed&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FDPOS&lt;/P&gt;&lt;P&gt; SYFDPOS&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Character strings, offset in character string&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;COLNO&lt;/P&gt;&lt;P&gt; SYCOLNO&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; List creation, current column of list&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LINCT&lt;/P&gt;&lt;P&gt; SYLINCT&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; List processing, page length of list&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LINNO&lt;/P&gt;&lt;P&gt; SYLINNO&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; List creation, current line&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LINSZ&lt;/P&gt;&lt;P&gt; SYLINSZ&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; List creation, width of list&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SUBRC&lt;/P&gt;&lt;P&gt; SYSUBRC&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Return value, return value after ABAP statements&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LILLI&lt;/P&gt;&lt;P&gt; SYLILLI&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; List processing, current list line&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LSIND&lt;/P&gt;&lt;P&gt; SYLSIND&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; List processing, details list index&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;STEPL&lt;/P&gt;&lt;P&gt; SYSTEPL&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Screens, current table line index&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LOOPC&lt;/P&gt;&lt;P&gt; SYLOOPC&lt;/P&gt;&lt;P&gt; INT4&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Screens, number of lines visible in table&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LANGU&lt;/P&gt;&lt;P&gt; SYLANGU&lt;/P&gt;&lt;P&gt; LANG&lt;/P&gt;&lt;P&gt; 1&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; R/3 System, current language&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MANDT&lt;/P&gt;&lt;P&gt; SYMANDT&lt;/P&gt;&lt;P&gt; CLNT&lt;/P&gt;&lt;P&gt; 3&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; R/3 System, client number from logon&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DBSYS&lt;/P&gt;&lt;P&gt; SYDBSYS&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 10&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; R/3 System, name of central database system&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SYSID&lt;/P&gt;&lt;P&gt; SYSYSID&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 8&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; R/3 System, name of R/3 System&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SAPRL&lt;/P&gt;&lt;P&gt; SYSAPRL&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 4&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; R/3 System, system release&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;TCODE&lt;/P&gt;&lt;P&gt; SYTCODE&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 20&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; ABAP program, current transaction code&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATUM&lt;/P&gt;&lt;P&gt; SYDATUM&lt;/P&gt;&lt;P&gt; DATS&lt;/P&gt;&lt;P&gt; 8&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Date and time, current (application server) date&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;UCOMM&lt;/P&gt;&lt;P&gt; SYUCOMM&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 70&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Screens, function code triggered by PAI&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;UZEIT&lt;/P&gt;&lt;P&gt; SYUZEIT&lt;/P&gt;&lt;P&gt; TIMS&lt;/P&gt;&lt;P&gt; 6&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Dat and time, current application server time&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;UNAME&lt;/P&gt;&lt;P&gt; SYUNAME&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 12&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; R/3 System, user logon name&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MSGLI&lt;/P&gt;&lt;P&gt; SYMSGLI&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 60&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Messages, message line&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;TITLE&lt;/P&gt;&lt;P&gt; SYTITLE&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 70&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Screens, title text&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LISEL&lt;/P&gt;&lt;P&gt; SYLISEL&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 255&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; List processing, contents of selected line&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;ULINE&lt;/P&gt;&lt;P&gt; SYULINE&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 255&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Constants, horizontal line with length 255&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MSGID&lt;/P&gt;&lt;P&gt; SYMSGID&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 20&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Messages, message class&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MSGID&lt;/P&gt;&lt;P&gt; SYMSGID&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 20&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Messages, message class&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MSGTY&lt;/P&gt;&lt;P&gt; SYMSGTY&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 1&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Messages, message type&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MSGNO&lt;/P&gt;&lt;P&gt; SYMSGNO&lt;/P&gt;&lt;P&gt; NUMC&lt;/P&gt;&lt;P&gt; 3&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Messages, message number&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MSGV1&lt;/P&gt;&lt;P&gt; SYMSGV&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 50&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Messages, message variables&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MSGV2&lt;/P&gt;&lt;P&gt; SYMSGV&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 50&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Messages, message variables&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MSGV3&lt;/P&gt;&lt;P&gt; SYMSGV&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 50&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Messages, message variables&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;MSGV4&lt;/P&gt;&lt;P&gt; SYMSGV&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 50&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Messages, message variables&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;VLINE&lt;/P&gt;&lt;P&gt; SYVLINE&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 1&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; Constants, vertical bar&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;HOST&lt;/P&gt;&lt;P&gt; SYHOST&lt;/P&gt;&lt;P&gt; CHAR&lt;/P&gt;&lt;P&gt; 32&lt;/P&gt;&lt;P&gt; 0&lt;/P&gt;&lt;P&gt; R/3 System, Name of application server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the link is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://abaplovers.blogspot.com/2008/02/list-of-important-system-variables.html" target="test_blank"&gt;http://abaplovers.blogspot.com/2008/02/list-of-important-system-variables.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;do reward if helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 12:27:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/systems-variables/m-p/3417661#M820837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-23T12:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: systems variables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/systems-variables/m-p/3417662#M820838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;system variables are available to the every abap program.these system variables are available in syst table in the abap dictionery.system variables means system defaultly provides some variables to your program.theses system variables are available to every abap program.no need to import any table or package  for this purpose. defaultly available to the every program.the system variables are look like this sy-.....,or syst-.......&lt;/P&gt;&lt;P&gt;in old vertions system variables use like syst-...... .and now in new vertions useing like sy-.......there is nothing difference between two of them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 14:24:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/systems-variables/m-p/3417662#M820838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-23T14:24:40Z</dc:date>
    </item>
  </channel>
</rss>

