<?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 system field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285520#M497998</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the system field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 27 May 2007 05:13:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-27T05:13:41Z</dc:date>
    <item>
      <title>system field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285520#M497998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the system field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 May 2007 05:13:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285520#M497998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-27T05:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: system field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285521#M497999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;predefined fields , like sy-datum = system date.&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;Peram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 May 2007 07:57:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285521#M497999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-27T07:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: system field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285522#M498000</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;You can all these fields in table 'SYST'. these fields holds the values at runtime and can be accessed anywhere in the program without any delcaratio.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vidya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 May 2007 08:55:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285522#M498000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-27T08:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: system field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285523#M498001</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;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;&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;for more info&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/7b/fb96c8882811d295a90000e8353423/content.htm#themen" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/7b/fb96c8882811d295a90000e8353423/content.htm#themen&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 04:31:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285523#M498001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T04:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: system field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285524#M498002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sandya,&lt;/P&gt;&lt;P&gt;system fields are the system defined fields defined by SAP. you can directly use these fields in your programs. following is the list of system defined fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-datum - displays current date&lt;/P&gt;&lt;P&gt;sy-uzeit  -  displays current time&lt;/P&gt;&lt;P&gt;sy-uname - user name&lt;/P&gt;&lt;P&gt;sy-host    - host name&lt;/P&gt;&lt;P&gt;sy-pagno - page numbers&lt;/P&gt;&lt;P&gt;sy-tfill - number of data in internal table&lt;/P&gt;&lt;P&gt;sy-subrc - check for return code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so on...there are many system defined fields....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please reward points in case useful...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 11:16:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285524#M498002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T11:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: system field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285525#M498003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sandya,&lt;/P&gt;&lt;P&gt;                 System fields are those variables that are filled by the sap system itself during the process flow. these are the common system fields,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-lsind -&amp;gt; index of the list created during the current event&lt;/P&gt;&lt;P&gt;sy-listi -&amp;gt; index of the list from which the event was trigerred&lt;/P&gt;&lt;P&gt;sy-lili -&amp;gt; absolute number of the line from which the event is triggered&lt;/P&gt;&lt;P&gt;sy-lisel -&amp;gt; content of the line selected&lt;/P&gt;&lt;P&gt;sy-curow -&amp;gt; position of the line in the window from which the event was triggered.&lt;/P&gt;&lt;P&gt;sy-cucol -&amp;gt; position ofthe column in the window from which the event is triggered.&lt;/P&gt;&lt;P&gt;sy-cpage -&amp;gt; page number of the first displayed page of the list from which the event is triggered.&lt;/P&gt;&lt;P&gt;sy-staro -&amp;gt; number of the first line of the fist page of the list from which the event is triggered.&lt;/P&gt;&lt;P&gt;sy-staco -&amp;gt; number of the first column displayed in the list from which the event is triggered.&lt;/P&gt;&lt;P&gt;sy-ucomm -&amp;gt; funtion code of the event triggered.&lt;/P&gt;&lt;P&gt;sy-pfkey -&amp;gt; status of the list currently being displayed&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;Sarath&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if found helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 11:39:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285525#M498003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T11:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: system field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285526#M498004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Sandya, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   System fields are nothing but the system variables which store runtime system related informations like current screen number , program name etc .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  You can get the list of list of system fields in table SYST .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ranjita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 11:56:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285526#M498004</guid>
      <dc:creator>former_member196299</dc:creator>
      <dc:date>2007-05-28T11:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: system field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285527#M498005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI sandaya&lt;/P&gt;&lt;P&gt; U can know system fields by going to SYST table in SE11&lt;/P&gt;&lt;P&gt; and some times u need to modify the system field, these system fields get the values at runtime,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;jogu_vinesh@yahoo.com&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2007 04:50:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-field/m-p/2285527#M498005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-04T04:50:56Z</dc:date>
    </item>
  </channel>
</rss>

