<?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 error in loading Programme in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-error-in-loading-programme/m-p/5509546#M1259896</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the message u r getting "input date is not longer enough" is due to the date format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can declare the date as c(10) and watch out for your user profile own date formant like dd.mm.yyyy or mm/dd/yyyy etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And when you are uploading the data The reason behind getting date format as "..00" etc is because the conventional program will take date input as "YYYYMMDD" and it converts this into your user profile date format like "dd.mm.yyyy" etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please watch these answers you will be solving your issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shekher&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Apr 2009 07:16:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-16T07:16:34Z</dc:date>
    <item>
      <title>Date format error in loading Programme</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-error-in-loading-programme/m-p/5509544#M1259894</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; I am getting the error as I_BLDAT invalid date (ORA-01840: input value not long enough for date format) but some how in loading program I am getting the date as &lt;STRONG&gt;. .0&lt;/STRONG&gt; instead of 00000000. can someone please help me where it went wrong.These are the lines involing BLDAT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONCATENATE:
         wa_zfrcptp-bldat+6(2) wa_zfrcptp-bldat+4(2)
         wa_zfrcptp-bldat+0(4) INTO l_lla_dtl_rec-pay_date,&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;wa_zfrcptp-bldat        TO l_huon_crr_rec-receipt_date.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;wa_zfrcptp-bldat        TO l_huon_ipr_rec-receipt_date.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONCATENATE wa_zfrcptp-bldat+6(2)
                wa_zfrcptp-bldat+4(2)
                wa_zfrcptp-bldat+0(4)
                           INTO l_cal_dtl_rec-receipt_date&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;PRE&gt;&lt;CODE&gt;bldat_i(8)           TYPE c,&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;l_cid_dtl_rec-bldat_i     = wa_zfrcptp-bldat.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Rishik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rishik on Apr 16, 2009 8:44 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 06:43:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-error-in-loading-programme/m-p/5509544#M1259894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T06:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Date format error in loading Programme</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-error-in-loading-programme/m-p/5509545#M1259895</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;If you are using the BDC for loading data..then while passing BLDAT to the BDC &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the WRITE statement to convert the date to user format and pass to BDC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_endda1 is of type char with length 10. endda type sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WRITE i_input_line-endda TO l_endda1.
    PERFORM bdc_field       USING 'RP50G-ENDDA'    l_endda1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 07:07:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-error-in-loading-programme/m-p/5509545#M1259895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T07:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Date format error in loading Programme</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-error-in-loading-programme/m-p/5509546#M1259896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the message u r getting "input date is not longer enough" is due to the date format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can declare the date as c(10) and watch out for your user profile own date formant like dd.mm.yyyy or mm/dd/yyyy etc...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And when you are uploading the data The reason behind getting date format as "..00" etc is because the conventional program will take date input as "YYYYMMDD" and it converts this into your user profile date format like "dd.mm.yyyy" etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please watch these answers you will be solving your issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shekher&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 07:16:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-error-in-loading-programme/m-p/5509546#M1259896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T07:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Date format error in loading Programme</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-error-in-loading-programme/m-p/5509547#M1259897</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;If ur using BDC...then pass 10 character variable to it....as while accepting the data in BDC recording &lt;/P&gt;&lt;P&gt;system accepts it in 10 characters &amp;amp; stores internally in YYYYMMDD format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ajit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2009 07:26:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/date-format-error-in-loading-programme/m-p/5509547#M1259897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-16T07:26:29Z</dc:date>
    </item>
  </channel>
</rss>

