<?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 quantity error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412623#M819583</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do like this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA : V_SFAKT(3) TYPE C.
write mpla-sfakt to v_sfakt.
" Pass this v_sfakt to the screen field.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will solve ur issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Feb 2008 15:25:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-15T15:25:22Z</dc:date>
    <item>
      <title>BDC quantity error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412618#M819578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have done a recording for IP42 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN the program When I pass value to the field SFAKT it gives a message that the input field is greated than the screen field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the field is SFAKT from the table MPLA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried to change the input field to  &lt;/P&gt;&lt;P&gt;DATA : V_SFAKT(3) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but in the debug mode i see wrong values is passed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raju.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 14:39:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412618#M819578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T14:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: BDC quantity error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412619#M819579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ANy Suggestions..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 15:03:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412619#M819579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T15:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: BDC quantity error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412620#M819580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess problem with type conflict.  Before passing the value to the field use the convesrion routine. FM 'CONVERSION_EXIT_ALPHA_input. and then assign to the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Chandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 15:05:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412620#M819580</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T15:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: BDC quantity error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412621#M819581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Raju,&lt;/P&gt;&lt;P&gt;I guess this kind of error occurs when the value you are entering into the screen is greater than what it is actually restricted to by the screen field.&lt;/P&gt;&lt;P&gt;The length of the field SFAKT as in MPLA is 3 with 2 decimal places. The total output length with the decimal point would be 4.&lt;/P&gt;&lt;P&gt;Example: 1.00&lt;/P&gt;&lt;P&gt;The maximum value which can be stored here would be 9.99. Please check the way the input value is being passed. Only appropriate values should be passed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please verify the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 15:22:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412621#M819581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T15:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: BDC quantity error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412622#M819582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks chandra for the suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However the FM that you specified can only be used for type C. else it might dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Raju.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 15:22:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412622#M819582</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T15:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: BDC quantity error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412623#M819583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do like this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA : V_SFAKT(3) TYPE C.
write mpla-sfakt to v_sfakt.
" Pass this v_sfakt to the screen field.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will solve ur issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 15:25:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412623#M819583</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T15:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: BDC quantity error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412624#M819584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Vasant for the suggestions.&lt;/P&gt;&lt;P&gt;But dosent work.&lt;/P&gt;&lt;P&gt;Eg - if the value is 1.00 it passes *00.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raju.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 15:32:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412624#M819584</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T15:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: BDC quantity error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412625#M819585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Make it LV_SFAKT(5).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 15:34:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412625#M819585</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T15:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: BDC quantity error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412626#M819586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Vasant it wirks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raju.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 15:45:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-quantity-error/m-p/3412626#M819586</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T15:45:15Z</dc:date>
    </item>
  </channel>
</rss>

