<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/4220429#M1008402</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sourabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below given link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapnet.ru/abap_docu/ABENTIME-STAMP-GENERAL.htm" target="test_blank"&gt;http://www.sapnet.ru/abap_docu/ABENTIME-STAMP-GENERAL.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Jul 2008 10:14:12 GMT</pubDate>
    <dc:creator>kiran_k8</dc:creator>
    <dc:date>2008-07-15T10:14:12Z</dc:date>
    <item>
      <title>Time Stamp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/4220426#M1008399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am taking date and time from user in &lt;/P&gt;&lt;P&gt;YYYYDDMM format for date and&lt;/P&gt;&lt;P&gt;HHMMSS format for time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to compare this input with SENDTIME field in SXMSPMAST table which is in following format&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UTC Time Stamp in Long Form (YYYYMMDDhhmmssmmmuuun)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me how can i compare my inputs with this field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 10:10:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/4220426#M1008399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T10:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: Time Stamp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/4220427#M1008400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi first concatenate these two and send it to another char field ...then compare there two&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 10:13:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/4220427#M1008400</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T10:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: Time Stamp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/4220428#M1008401</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;Use offset and compare the value  ...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS : p_date   LIKE sy-datum,
             p_uzeit  LIKE sy-uzeit.

DATA : v_compare LIKE sxmspmast-sendtimest,
       v_char(15),
       v_date LIKE sy-datum,
       v_time LIKE sy-uzeit.

v_char = v_compare.
v_date = v_char+0(8).
v_time = v_char+8(6).

IF v_date = p_date OR
   v_time = p_uzeit.
*** Do something
ENDIF.
 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 10:13:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/4220428#M1008401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-15T10:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Time Stamp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/4220429#M1008402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sourabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below given link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapnet.ru/abap_docu/ABENTIME-STAMP-GENERAL.htm" target="test_blank"&gt;http://www.sapnet.ru/abap_docu/ABENTIME-STAMP-GENERAL.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jul 2008 10:14:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/time-stamp/m-p/4220429#M1008402</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2008-07-15T10:14:12Z</dc:date>
    </item>
  </channel>
</rss>

