<?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 BDC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1495725#M230199</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,&lt;/P&gt;&lt;P&gt;          iam developing BDC for FB50. everything  posting to screen except &amp;lt;b&amp;gt;document date&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;amount&amp;lt;/b&amp;gt;.  i came to know that is not matching . how to solve this problem.&lt;/P&gt;&lt;P&gt;                          urgent.&lt;/P&gt;&lt;P&gt;                                    chandu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Jul 2006 14:30:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-26T14:30:57Z</dc:date>
    <item>
      <title>BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1495725#M230199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,&lt;/P&gt;&lt;P&gt;          iam developing BDC for FB50. everything  posting to screen except &amp;lt;b&amp;gt;document date&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;amount&amp;lt;/b&amp;gt;.  i came to know that is not matching . how to solve this problem.&lt;/P&gt;&lt;P&gt;                          urgent.&lt;/P&gt;&lt;P&gt;                                    chandu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 14:30:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1495725#M230199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-26T14:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1495726#M230200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be the date format and the decimal separator in the amount are not accepted , try to capture the error messages or run it with A mode and check out the error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 14:35:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1495726#M230200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-26T14:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1495727#M230201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You must make sure that you date is in the correct format.  For example, if your format is MM/DD/YY, then you must pass the date in this format.  Also,  for the qty field, try moving to a smaller charcter field and then pass this field to the BDC coding.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use this function module to format the date for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: bdc_datum(10) type c.

call function 'CONVERT_DATE_TO_EXTERNAL'
     exporting
          date_internal = sy-datum
     importing
          date_external = bdc_datum.&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;P&gt;Use a smaller field for the qty.  Define a field like below and use it in the BDC coding.  Of course you meed to move the value to this field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Data: BDC_QTY(10) type c.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 14:36:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1495727#M230201</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-26T14:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1495728#M230202</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;1)&amp;lt;b&amp;gt;document date&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do it in the way Rich has mentioned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)&amp;lt;b&amp;gt;amount&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto to the Domain of the Screen element field and see the output length. Then declare a character variable of that length and assign the amount value to this field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should work fine after this corrections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2006 14:39:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc/m-p/1495728#M230202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-26T14:39:32Z</dc:date>
    </item>
  </channel>
</rss>

