<?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: regarding time conversion in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-time-conversion/m-p/2017225#M412342</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before giving the value of this date field to a screeen filed in BDC program ( I mean before the perform ) U copy the date into a variable of 5 characters...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data w_time(5) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before that perform ...( assuming vlo2n-time is of 6 characters )&lt;/P&gt;&lt;P&gt;use&lt;/P&gt;&lt;P&gt;     w_time(2)  = vlo2n-time(2).&lt;/P&gt;&lt;P&gt;     w_time+2(1) = ':'.&lt;/P&gt;&lt;P&gt;     w_time&lt;EM&gt;3(2) = vlo2n-time&lt;/EM&gt;2(2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform field_fill using 'Screen no.' w_time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if it helps u...&lt;/P&gt;&lt;P&gt;sai ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Mar 2007 11:51:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-09T11:51:59Z</dc:date>
    <item>
      <title>regarding time conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-time-conversion/m-p/2017221#M412338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Iam using bdc to upload data. I have got a time field which would accept only hh:mm. Iam not using any text file to upload the data. All the data is transferred from VL02N. Now the date format here is hhmmss. Can anyone help me to either change this value to the required format or any other suggestions would be of gr8 help&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;skk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 10:55:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-time-conversion/m-p/2017221#M412338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T10:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: regarding time conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-time-conversion/m-p/2017222#M412339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : hr(2),&lt;/P&gt;&lt;P&gt;        min(2),&lt;/P&gt;&lt;P&gt;        tim(5).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hr = VL02N-&amp;lt;fieldname&amp;gt;(2).&lt;/P&gt;&lt;P&gt;min = VL02N-&amp;lt;fieldname&amp;gt;+2(2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate hr min into tim separated by ':'.&lt;/P&gt;&lt;P&gt;now tim contains the value.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 10:59:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-time-conversion/m-p/2017222#M412339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T10:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: regarding time conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-time-conversion/m-p/2017223#M412340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;take two var hh and mm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hh = time+0(2).&lt;/P&gt;&lt;P&gt;mm = time+2(2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate the values and assign to time&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 11:07:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-time-conversion/m-p/2017223#M412340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T11:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: regarding time conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-time-conversion/m-p/2017224#M412341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assign a variable for time &lt;/P&gt;&lt;P&gt;and use the logic as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : hr(2) type c value '10',
       mm(2) type c value '45',
       ss(2) type c value '00',
       val type sy-uzeit.
       concatenate hr mm ss into val .

       write:/ val.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit the val to the time portion of ur Vl02n (o/b devlivery change trnxn ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See eventhough u have hh:mm in ur flat file declare a vareiable val type sy-uziet and ss a variable for seconds default it to '00' and pass the content of hhmmss into val this will take the value in hhmmss format into the Db &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 11:08:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-time-conversion/m-p/2017224#M412341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T11:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: regarding time conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-time-conversion/m-p/2017225#M412342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before giving the value of this date field to a screeen filed in BDC program ( I mean before the perform ) U copy the date into a variable of 5 characters...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data w_time(5) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before that perform ...( assuming vlo2n-time is of 6 characters )&lt;/P&gt;&lt;P&gt;use&lt;/P&gt;&lt;P&gt;     w_time(2)  = vlo2n-time(2).&lt;/P&gt;&lt;P&gt;     w_time+2(1) = ':'.&lt;/P&gt;&lt;P&gt;     w_time&lt;EM&gt;3(2) = vlo2n-time&lt;/EM&gt;2(2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform field_fill using 'Screen no.' w_time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if it helps u...&lt;/P&gt;&lt;P&gt;sai ramesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 11:51:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-time-conversion/m-p/2017225#M412342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T11:51:59Z</dc:date>
    </item>
  </channel>
</rss>

