<?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: Current Date and Timestamp in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/current-date-and-timestamp/m-p/1541423#M246640</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL This function module,&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_SDATE_OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: date type sy-datum, text(20).&lt;/P&gt;&lt;P&gt; date = sy-datum.  "20060807&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_SDATE_OUTPUT'&lt;/P&gt;&lt;P&gt;  EXPORTING &lt;/P&gt;&lt;P&gt;   INPUT         = date &lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;   OUTPUT        = text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;further help, refer this link:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2111343"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now text will have "AUG/07/2006"&lt;/P&gt;&lt;P&gt;then print this TEXT along with TIMESTAMP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Aug 2006 14:38:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-07T14:38:06Z</dc:date>
    <item>
      <title>Current Date and Timestamp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/current-date-and-timestamp/m-p/1541421#M246638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I want to display the current DATE and TIMESTAMP (as AUG 07 2006, 6:24:49).Please tell me how can I get it in my report? Thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2006 12:56:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/current-date-and-timestamp/m-p/1541421#M246638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-07T12:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: Current Date and Timestamp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/current-date-and-timestamp/m-p/1541422#M246639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please try this sample progam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.

data: timestamp type string.
data: tmp_datum type string.
data: tmp_uzeit(10) type c.
data: imonths type table of t247 with header line.

call function 'MONTH_NAMES_GET'
     tables
          month_names = imonths.

read table imonths with key spras = sy-langu
                            mnr   = sy-datum+4(2).

concatenate imonths-ktx sy-datum+6(2) sy-datum+0(4) into tmp_datum
                separated by space.
concatenate tmp_datum ',' into tmp_datum.

write sy-uzeit to tmp_uzeit.

concatenate tmp_datum tmp_uzeit into timestamp separated by space.

write:/ timestamp.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2006 14:22:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/current-date-and-timestamp/m-p/1541422#M246639</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-07T14:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: Current Date and Timestamp</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/current-date-and-timestamp/m-p/1541423#M246640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL This function module,&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_SDATE_OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: date type sy-datum, text(20).&lt;/P&gt;&lt;P&gt; date = sy-datum.  "20060807&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_SDATE_OUTPUT'&lt;/P&gt;&lt;P&gt;  EXPORTING &lt;/P&gt;&lt;P&gt;   INPUT         = date &lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;   OUTPUT        = text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;further help, refer this link:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2111343"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now text will have "AUG/07/2006"&lt;/P&gt;&lt;P&gt;then print this TEXT along with TIMESTAMP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Aug 2006 14:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/current-date-and-timestamp/m-p/1541423#M246640</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-07T14:38:06Z</dc:date>
    </item>
  </channel>
</rss>

