<?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: Date Converstion Function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-converstion-function-module/m-p/6822402#M1470381</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;Please go through the forum rules and search the forum before posting. We have lot of questions related to this. FYI... questions related to date are not allowed. Lets join together and improve the quality of the content of SCN:-)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 03 Apr 2010 11:18:12 GMT</pubDate>
    <dc:creator>vinod_vemuru2</dc:creator>
    <dc:date>2010-04-03T11:18:12Z</dc:date>
    <item>
      <title>Date Converstion Function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-converstion-function-module/m-p/6822401#M1470380</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;             Is there any Function Module to convert Date. I want to convert YYYYMMDD to DD/MM/YYYY. ?? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnak you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hemanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Apr 2010 11:14:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-converstion-function-module/m-p/6822401#M1470380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-03T11:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: Date Converstion Function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-converstion-function-module/m-p/6822402#M1470381</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;Please go through the forum rules and search the forum before posting. We have lot of questions related to this. FYI... questions related to date are not allowed. Lets join together and improve the quality of the content of SCN:-)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Apr 2010 11:18:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-converstion-function-module/m-p/6822402#M1470381</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2010-04-03T11:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: Date Converstion Function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-converstion-function-module/m-p/6822403#M1470382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hemanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Search Before you Post, and Basic Date Questions are not allowed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW : Vinod you are obsolutely correct, Lets join to improve the Quality of &lt;STRONG&gt;OUR OWN&lt;/STRONG&gt; SDN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Check this one For Diff Date Formats|http://wiki.sdn.sap.com/wiki/display/Snippets/ABAP&lt;EM&gt;-&lt;/EM&gt;Function&lt;EM&gt;module&lt;/EM&gt;for&lt;EM&gt;converting&lt;/EM&gt;any&lt;EM&gt;External&lt;/EM&gt;date&lt;EM&gt;format&lt;/EM&gt;to&lt;EM&gt;Internal&lt;/EM&gt;format]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data date type sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;date = '20100403'." and you want it 03/04/2010
data : str type string.
str = date.
"Now concatenate

concatentae str+6(2) "Date
        '/'
       str+4(2) " Month
       '/'
      str+0(4)  " year
  into str.

This will give you 03/04/2010&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Cheerz&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Apr 2010 11:22:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-converstion-function-module/m-p/6822403#M1470382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-03T11:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Date Converstion Function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-converstion-function-module/m-p/6822404#M1470383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinod and Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          Thanks for your Replies, Sorry for breaking rules. Bu my scenario here is not a simple one. Date format will change from system to system. So, i cannot use Concatenate. Any am closing the thread.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Apr 2010 11:45:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-converstion-function-module/m-p/6822404#M1470383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-03T11:45:54Z</dc:date>
    </item>
  </channel>
</rss>

