<?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 format in Output types in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-in-output-types/m-p/1208366#M132833</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;    Date format is always depends on user settings. to check those settings use the Tcode SU01-&amp;gt; DEFAULTS tab you will get your date format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are trying it in ABAP code always wuse command "WRITE source date to taget date". then ABAP itself take care of formates&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Mar 2006 17:45:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-29T17:45:49Z</dc:date>
    <item>
      <title>Date format in Output types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-in-output-types/m-p/1208364#M132831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is output type anyway related to date format.&lt;/P&gt;&lt;P&gt;As there is a case when we are trying to assign 2 output types at the same time, and try to save it, we get an update termination error. &lt;/P&gt;&lt;P&gt;On debugging the code we found that date formats it was chosing for 2 output types were different. ( Ex - DD.MM.YYYY and YYYY.MM.DD )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 14:38:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-in-output-types/m-p/1208364#M132831</guid>
      <dc:creator>harish_kbalachandran</dc:creator>
      <dc:date>2006-03-29T14:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: Date format in Output types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-in-output-types/m-p/1208365#M132832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Harish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Date format is determined by the global settings such as Country or more specifically the User Master. It is not based on output type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Venu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 15:21:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-in-output-types/m-p/1208365#M132832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T15:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: Date format in Output types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-in-output-types/m-p/1208366#M132833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;    Date format is always depends on user settings. to check those settings use the Tcode SU01-&amp;gt; DEFAULTS tab you will get your date format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are trying it in ABAP code always wuse command "WRITE source date to taget date". then ABAP itself take care of formates&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 17:45:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-in-output-types/m-p/1208366#M132833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T17:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Date format in Output types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-in-output-types/m-p/1208367#M132834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harish,&lt;/P&gt;&lt;P&gt;Date formats will may differ from user to user, this is depends on the User date format, if you want to use the Generic format then use the beloe code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: Date like SY-DATUM,&lt;/P&gt;&lt;P&gt;      date1(10),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Move: SY_DATUM to DATE.&lt;/P&gt;&lt;P&gt;WRITE DATE to DATE1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this onw DATE1 will have the USER Format, whatever the user format, it will convert the DATE to that user,  but in this case the year should come first i mean the format of SY_DATUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Mar 2006 18:30:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-in-output-types/m-p/1208367#M132834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T18:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Date format in Output types</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-in-output-types/m-p/1208368#M132835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may take a look at this FM &amp;lt;b&amp;gt;CONVERT_DATE_TO_INTERNAL&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&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>Wed, 29 Mar 2006 18:40:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-in-output-types/m-p/1208368#M132835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-29T18:40:12Z</dc:date>
    </item>
  </channel>
</rss>

