<?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 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/2036725#M418408</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have managed to copy the system date to a field using the sy-datlo. Now i want to change the date format to 'MM/DD/YYYY'. Please Help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Mar 2007 02:57:06 GMT</pubDate>
    <dc:creator>shilpik20</dc:creator>
    <dc:date>2007-03-06T02:57:06Z</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/2036725#M418408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have managed to copy the system date to a field using the sy-datlo. Now i want to change the date format to 'MM/DD/YYYY'. Please Help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 02:57:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2036725#M418408</guid>
      <dc:creator>shilpik20</dc:creator>
      <dc:date>2007-03-06T02:57:06Z</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/2036726#M418409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;use the Function module CONVERT_DATE_TO_EXTERNAL &lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   DATE_INTERNAL                  = VLDAT&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   DATE_EXTERNAL                  = DATE&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   DATE_INTERNAL_IS_INVALID       = 1&lt;/P&gt;&lt;P&gt;   OTHERS                         = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;keerthi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        keerthi kiran varanasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 03:03:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2036726#M418409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T03:03: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/2036727#M418410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;welcome to SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate sy-datum&lt;EM&gt;4(2) '/' sy-datum&lt;/EM&gt;6(2) '/' sy-datum+0(4) into v_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 03:03:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2036727#M418410</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-03-06T03:03:41Z</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/2036728#M418411</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;Welcome to SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use offset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: wa_date(10).

concatenate sy-datlo+4(2) '/' sy-datlo+6(2) '/' sy-datlo(4) into wa_date.

write: /wa_date.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 03:06:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2036728#M418411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T03:06:20Z</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/2036729#M418412</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;you have option called edit-mask go for that statement you will get the date format what ever you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it will help u.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2007 05:32:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-the-date-format/m-p/2036729#M418412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-06T05:32:18Z</dc:date>
    </item>
  </channel>
</rss>

