<?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: bdc issue : input value is longer than input field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-input-value-is-longer-than-input-field/m-p/9926539#M1795794</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Remember that BDC (contrary to BAPI) use external format of data, so for numeric values, quantities, amount, use a WRITE statement to a character field of correct length.(output length of domain to be precise) also use any required currency code or unit of measure in the WRITE TO statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A default move statement to bdcdata&lt;SPAN class="L0S70"&gt;-fval &lt;/SPAN&gt;may result in a right adjusted value like 0000000000000000000008.5000000 (Check actual value generated in your program using debug in form bdc_field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Dec 2013 12:36:01 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2013-12-20T12:36:01Z</dc:date>
    <item>
      <title>bdc issue : input value is longer than input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-input-value-is-longer-than-input-field/m-p/9926537#M1795792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am getting error &lt;STRONG&gt;"input value is longer than input field"&lt;/STRONG&gt; while doing bdc for the field&amp;nbsp;&amp;nbsp; Percentage Rate ( technical name is PKOND )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I entered 8.5000000 in pkond , please check the screen shots &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the data type of pkond is TBPKONTZ (&amp;nbsp; DEC 10, 7 )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please let me know what is the issue ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vijaya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen shot 1 - inputs &lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/348245" width="450" /&gt;&lt;/P&gt;&lt;P&gt;screen shot 2 &lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/348246" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 12:20:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-input-value-is-longer-than-input-field/m-p/9926537#M1795792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-20T12:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: bdc issue : input value is longer than input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-input-value-is-longer-than-input-field/m-p/9926538#M1795793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijayalaxmi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you pass the value to the field in BDC, convert it into char field and then pass it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;DATA c_pkond type c length 15.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c_pkond = 8.5000000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In bdc assignment, you use c_pkond.&lt;/P&gt;&lt;P&gt;This will work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 12:28:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-input-value-is-longer-than-input-field/m-p/9926538#M1795793</guid>
      <dc:creator>venkateswaran_k</dc:creator>
      <dc:date>2013-12-20T12:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: bdc issue : input value is longer than input field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-input-value-is-longer-than-input-field/m-p/9926539#M1795794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Remember that BDC (contrary to BAPI) use external format of data, so for numeric values, quantities, amount, use a WRITE statement to a character field of correct length.(output length of domain to be precise) also use any required currency code or unit of measure in the WRITE TO statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A default move statement to bdcdata&lt;SPAN class="L0S70"&gt;-fval &lt;/SPAN&gt;may result in a right adjusted value like 0000000000000000000008.5000000 (Check actual value generated in your program using debug in form bdc_field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 12:36:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-issue-input-value-is-longer-than-input-field/m-p/9926539#M1795794</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2013-12-20T12:36:01Z</dc:date>
    </item>
  </channel>
</rss>

