<?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: problem with quantity field in BDC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-quantity-field-in-bdc/m-p/4980257#M1160526</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;'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this FM to convert your value same like in data base&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here input will be your flat file value then output will be DB value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EX: your input '101010'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but DB value is '0000101010'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so in this situvations this FM will convert from '101010' to '0000101010',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arjun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Jan 2009 11:42:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-08T11:42:09Z</dc:date>
    <item>
      <title>problem with quantity field in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-quantity-field-in-bdc/m-p/4980253#M1160522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;               i am trying to upload  data from internal table to SAP using BDC, but while uploading quantity fields it is giving error as "Input fields is longer than screen field", Is there any method to upload quantity fields to SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                 thanks in adancae,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2009 09:34:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-quantity-field-in-bdc/m-p/4980253#M1160522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-08T09:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: problem with quantity field in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-quantity-field-in-bdc/m-p/4980254#M1160523</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;Before passing the value to perform bdc_field, convert that value to char type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA :        v_val(10)               TYPE c,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  v_val = wa_operation-std_value_01. CONDENSE v_val.&lt;/P&gt;&lt;P&gt;  CONCATENATE 'PLPOD-VGW01(' n_linecount1 ')' INTO v_para.&lt;/P&gt;&lt;P&gt;  PERFORM f_bdc_field       USING v_para           v_val.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM f_bdc_field  USING fnam fval.&lt;/P&gt;&lt;P&gt;  CLEAR wa_bdctab.&lt;/P&gt;&lt;P&gt;  wa_bdctab-fnam = fnam.&lt;/P&gt;&lt;P&gt;  wa_bdctab-fval = fval.&lt;/P&gt;&lt;P&gt;  APPEND wa_bdctab TO it_bdctab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " f_bdc_field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this it would be useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2009 09:46:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-quantity-field-in-bdc/m-p/4980254#M1160523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-08T09:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: problem with quantity field in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-quantity-field-in-bdc/m-p/4980255#M1160524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;While uploading data into a transaction using BDC you need to ensure that the data length in your file / itab is not exceeding the length of the screen field.Ensure that your data is inline with screen field length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2009 11:02:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-quantity-field-in-bdc/m-p/4980255#M1160524</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2009-01-08T11:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: problem with quantity field in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-quantity-field-in-bdc/m-p/4980256#M1160525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;take the character filed of length equl to output length from domain of the currency filed you are trying to upload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move the quantity from currency to character filed and then uplaod the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2009 11:09:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-quantity-field-in-bdc/m-p/4980256#M1160525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-08T11:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: problem with quantity field in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-quantity-field-in-bdc/m-p/4980257#M1160526</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;'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this FM to convert your value same like in data base&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here input will be your flat file value then output will be DB value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EX: your input '101010'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but DB value is '0000101010'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so in this situvations this FM will convert from '101010' to '0000101010',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arjun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jan 2009 11:42:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-quantity-field-in-bdc/m-p/4980257#M1160526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-08T11:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: problem with quantity field in BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-quantity-field-in-bdc/m-p/4980258#M1160527</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;Before you upload the data through the flat file,check the data type of every field in internal table define should be in 'char' format and data length should be equal to the length of the table field data element length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are the main and the basic pre-requiste requirement before any uplaod of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this might be of help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pooja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jan 2009 05:36:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-quantity-field-in-bdc/m-p/4980258#M1160527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-12T05:36:34Z</dc:date>
    </item>
  </channel>
</rss>

