<?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: lsmw date format problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-date-format-problem/m-p/1053575#M89807</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Lucas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the same problem with date for my LSMW asset load. Could you explain how you used the function.&lt;/P&gt;&lt;P&gt;If possible can you send me detailed documentation if you have any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks much&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Sep 2006 21:36:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-27T21:36:07Z</dc:date>
    <item>
      <title>lsmw date format problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-date-format-problem/m-p/1053570#M89802</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;   using lsmw i'm reciving an error : &lt;/P&gt;&lt;P&gt;"Enter date in format __-__-____" &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My source field is DYMD and I have for example "20041010" as a date. (DYMD is 8 lenght). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea what is wrong? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lukasz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2005 07:33:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-date-format-problem/m-p/1053570#M89802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-20T07:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: lsmw date format problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-date-format-problem/m-p/1053571#M89803</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;The date format depends upon the date format specified in the user master. Check the user in SU01 transaction. It seems the field expects a format 'DD-MM-YYYY'. Try passing either '20041010' or '10-10-2004'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2005 07:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-date-format-problem/m-p/1053571#M89803</guid>
      <dc:creator>Vinod_Chandran</dc:creator>
      <dc:date>2005-10-20T07:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: lsmw date format problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-date-format-problem/m-p/1053572#M89804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lukasz,&lt;/P&gt;&lt;P&gt;That's likely because your LSMW project uses BDC as an input method and the corresponding field excpects external date format. &lt;/P&gt;&lt;P&gt;Try to use external date format with length 10 (DD.MM.YYYY)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2005 08:30:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-date-format-problem/m-p/1053572#M89804</guid>
      <dc:creator>sergey_korolev</dc:creator>
      <dc:date>2005-10-20T08:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: lsmw date format problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-date-format-problem/m-p/1053573#M89805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Lukasz Gruca &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRY THESE fUNCTION MODULES.MIGHT BE THEY SOLVE YOUR PROBLEM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CONVERTING DATE(10) TO DATE(8)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'&lt;/P&gt;&lt;P&gt;            EXPORTING&lt;/P&gt;&lt;P&gt;              DATE_EXTERNAL = VAR_DATE1&lt;/P&gt;&lt;P&gt;            IMPORTING&lt;/P&gt;&lt;P&gt;              DATE_INTERNAL = VAR_INDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONVERT_DATE_TO_EXTERNAL &lt;/P&gt;&lt;P&gt;This Function module Converts date from system storage format to users specified display format &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Vijay Raheja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2005 08:59:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-date-format-problem/m-p/1053573#M89805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-20T08:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: lsmw date format problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-date-format-problem/m-p/1053574#M89806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx Vijay Raheja. &lt;/P&gt;&lt;P&gt;That's solved my problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;Lukasz Gruca&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2005 09:20:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-date-format-problem/m-p/1053574#M89806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-20T09:20:31Z</dc:date>
    </item>
    <item>
      <title>Re: lsmw date format problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-date-format-problem/m-p/1053575#M89807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Lucas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the same problem with date for my LSMW asset load. Could you explain how you used the function.&lt;/P&gt;&lt;P&gt;If possible can you send me detailed documentation if you have any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks much&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2006 21:36:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/lsmw-date-format-problem/m-p/1053575#M89807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-27T21:36:07Z</dc:date>
    </item>
  </channel>
</rss>

