<?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 Re: Time field in Smartforms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-field-in-smartforms/m-p/1423535#M203103</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Phani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a local variable of 5 characters and put the time in your local variable using the concept of Split and concatenate your original time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this local variable at the place where is your requirement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Jul 2006 09:57:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-11T09:57:16Z</dc:date>
    <item>
      <title>Time field in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-field-in-smartforms/m-p/1423533#M203101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How is the time field formatted in smartform.&lt;/P&gt;&lt;P&gt;Format that has to appeared is hh:mm.&lt;/P&gt;&lt;P&gt;But i'm getting hh:mm:ss.&lt;/P&gt;&lt;P&gt;How to quote this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 09:38:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-field-in-smartforms/m-p/1423533#M203101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-11T09:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Time field in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-field-in-smartforms/m-p/1423534#M203102</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;Create a Program line in smartform and write this code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate sy-uzeit&lt;EM&gt;0(2) ':' sy-uzeit&lt;/EM&gt;2(2) into l_time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass l_time in smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Prashant Patil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 09:41:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-field-in-smartforms/m-p/1423534#M203102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-11T09:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: Time field in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-field-in-smartforms/m-p/1423535#M203103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Phani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a local variable of 5 characters and put the time in your local variable using the concept of Split and concatenate your original time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this local variable at the place where is your requirement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 09:57:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-field-in-smartforms/m-p/1423535#M203103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-11T09:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: Time field in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-field-in-smartforms/m-p/1423536#M203104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Phani,&lt;/P&gt;&lt;P&gt;   In Smartform,we cannot set the format for time, if you want to display in the format you have mentioned what you have to do is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ws_time(6) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate sy-uzeit&lt;EM&gt;0(2) ':' sy-uzeit&lt;/EM&gt;2(2) into ws_time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now your time will have only hrs and mins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves ur issue. Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tushar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 11:40:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-field-in-smartforms/m-p/1423536#M203104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-11T11:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Time field in Smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-field-in-smartforms/m-p/1423537#M203105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    use &lt;/P&gt;&lt;P&gt;       set time = 'HH:MM'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2006 11:45:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-field-in-smartforms/m-p/1423537#M203105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-11T11:45:32Z</dc:date>
    </item>
  </channel>
</rss>

