<?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 stamp problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp-problem/m-p/2000701#M407189</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare one more variable of  type CHAR , and move the TIMESTAMp  to that variable , and compare that with ur char variable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : v_char(14).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move timestamp  to v_char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;compare v_char with ur char variable&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Mar 2007 05:20:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-09T05:20:11Z</dc:date>
    <item>
      <title>time stamp problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp-problem/m-p/2000700#M407188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Every one,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I have file to upload from application server. &lt;/P&gt;&lt;P&gt;       file name is like 'PPRICE'&lt;EM&gt;TIMESTAMP&lt;/EM&gt;'.CSV'&lt;/P&gt;&lt;P&gt;from this file name i have to read the TIMESTAMP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can read it like&lt;/P&gt;&lt;P&gt;tstamp = file+10(leng of timestamp).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now this tsamp is in character format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have to validate the current date with the time stamp i read into tstamp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so here is my problem&lt;/P&gt;&lt;P&gt;   how do i compare a character with the type timestamp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please some one help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 05:17:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp-problem/m-p/2000700#M407188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T05:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: time stamp problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp-problem/m-p/2000701#M407189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare one more variable of  type CHAR , and move the TIMESTAMp  to that variable , and compare that with ur char variable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : v_char(14).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move timestamp  to v_char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;compare v_char with ur char variable&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 05:20:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp-problem/m-p/2000701#M407189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T05:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: time stamp problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp-problem/m-p/2000702#M407190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data : timst(8) type c value '10:10:10',
       timestamp type t.

replace all occurrences of ':' in timst with space.
condense timst.
timestamp = timst.
if sy-uzeit gt timestamp.
endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&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 05:27:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp-problem/m-p/2000702#M407190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T05:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: time stamp problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp-problem/m-p/2000703#M407191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thing is that &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the characters (time stamp) that iam reading from the file name &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is a time stamp, iam reading in to character variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from the timestamp i have to take the date separately and check with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the current date&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2007 05:30:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp-problem/m-p/2000703#M407191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-09T05:30:25Z</dc:date>
    </item>
  </channel>
</rss>

