<?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: changing the date format. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2361003#M522304</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 FM CONVERSION_EXIT_ALPHA_OUTPUT and pass the date field to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will convert the date into required&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or use CONVERSION_EXIT_PDATE_OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jun 2007 04:32:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-19T04:32:52Z</dc:date>
    <item>
      <title>changing the date format.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2360999#M522300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;i have the internal table in my report which has one field i.e date field of type datum.&lt;/P&gt;&lt;P&gt;now i am down loading the output to local file using gui_download.&lt;/P&gt;&lt;P&gt;now i want the date format need to be formated to DD/MM/YYYY which is of 10 charcters in the local file.&lt;/P&gt;&lt;P&gt;how to go about this?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Shyam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 04:22:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2360999#M522300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T04:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: changing the date format.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2361000#M522301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use EDIT MASK  option&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 04:24:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2361000#M522301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T04:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: changing the date format.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2361001#M522302</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;Try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA: V_DATE TYPE SYDATUM.
DATA: V_OUTPUT(10).

V_DATE = SY-DATUM.

WRITE V_DATE TO V_OUTPUT DD/MM/YYYY.

WRITE: / V_OUTPUT.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 04:26:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2361001#M522302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T04:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: changing the date format.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2361002#M522303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shyam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The input by the user depends upon the settings in the User profile :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP Screen --&amp;gt; Menu --&amp;gt; System --&amp;gt; User Profile --&amp;gt; Own Data --&amp;gt; Defaults --&amp;gt;&lt;/P&gt;&lt;P&gt;Date Format .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user can use any of the format.&lt;/P&gt;&lt;P&gt;Ask the user to set the Date format as ddmmyyyy.&lt;/P&gt;&lt;P&gt;If not you can do a validation and if the user enters a date in the format other than u desired then u can show a message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;reward If Helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 04:27:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2361002#M522303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T04:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: changing the date format.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2361003#M522304</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 FM CONVERSION_EXIT_ALPHA_OUTPUT and pass the date field to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will convert the date into required&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or use CONVERSION_EXIT_PDATE_OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 04:32:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2361003#M522304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T04:32:52Z</dc:date>
    </item>
  </channel>
</rss>

