<?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 How to use system field in Module pool programing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-system-field-in-module-pool-programing/m-p/6614943#M1439638</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am developing module pool progaramming report. After using tables in layout (SE51) .&lt;/P&gt;&lt;P&gt;But I want to assign system field for default dates, default time, but I am not  getting &lt;/P&gt;&lt;P&gt;how to use that system field when the dates, time etc.. selcteing from respective tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manoj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Feb 2010 12:26:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-05T12:26:13Z</dc:date>
    <item>
      <title>How to use system field in Module pool programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-system-field-in-module-pool-programing/m-p/6614943#M1439638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am developing module pool progaramming report. After using tables in layout (SE51) .&lt;/P&gt;&lt;P&gt;But I want to assign system field for default dates, default time, but I am not  getting &lt;/P&gt;&lt;P&gt;how to use that system field when the dates, time etc.. selcteing from respective tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manoj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2010 12:26:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-system-field-in-module-pool-programing/m-p/6614943#M1439638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-05T12:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to use system field in Module pool programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-system-field-in-module-pool-programing/m-p/6614944#M1439639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The variables are SY-DATUM for date, SY-UZEIT for time, etc. Check SYST structure in SE11. You can assign them in the PBO section of the screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2010 17:06:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-system-field-in-module-pool-programing/m-p/6614944#M1439639</guid>
      <dc:creator>PedroGuarita</dc:creator>
      <dc:date>2010-02-05T17:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to use system field in Module pool programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-system-field-in-module-pool-programing/m-p/6614945#M1439640</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;  Looks like you want to appear current date and time by default in the I/O field of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have two options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create two I/O fields Date and Time and declare them in the TOP include as :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Data: Date like sy-datum,
         Time Like sy-uzeit.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write a routine in PBO module and assign values to them:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;date = sy-datum.
time = sy-uzeit.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second option is, Create the I/O fields and name them as &lt;STRONG&gt;syst-datum&lt;/STRONG&gt; and &lt;STRONG&gt;syst-uzeit&lt;/STRONG&gt;. The current date and time will be displayed without writing code. This may be used if you do not want to change the date and update any other table with the changed date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shiny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2010 17:35:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-system-field-in-module-pool-programing/m-p/6614945#M1439640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-05T17:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to use system field in Module pool programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-system-field-in-module-pool-programing/m-p/6614946#M1439641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Couple of thoughts using Date and Time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should use GET TIME. before you used date or time to get the current date and time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally, if you are trying to use the date/time for where the user is, i.e. system in India, user in Europe, you need to use the SY-TIMLO, SY-DATLO fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the F1 help for GET TIME for more.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Feb 2010 19:33:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-system-field-in-module-pool-programing/m-p/6614946#M1439641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-05T19:33:11Z</dc:date>
    </item>
  </channel>
</rss>

