<?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: Error occured while uploading the data for Tocde QP01 (BDC) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-occured-while-uploading-the-data-for-tocde-qp01-bdc/m-p/6070870#M1355558</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;Ok,i agree with you but the thing is it was allowing to upload the data for more than 18 rows as there was logic written. It is specified in the code:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

ELSEIF itab1-serial &amp;gt; 18 AND itab1-serial &amp;lt; 35.
              IF index = 19.
                index = 2.
              ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: nav009 on Sep 9, 2009 8:25 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Sep 2009 06:23:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-09T06:23:58Z</dc:date>
    <item>
      <title>Error occured while uploading the data for Tocde QP01 (BDC)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-occured-while-uploading-the-data-for-tocde-qp01-bdc/m-p/6070868#M1355556</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;I am facing a strange problem i.e. when i try to upload the data for the Tcode QP01 i am able to upload the data for the 18 rows but when it is more than 18 ,it gives the following error and saves the data upto 18 rows only :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

CALL_TRANSACTION QP01 returncode:     0  RECORD:          0
S Field RC27X-FLG_SEL . not found in loop of screen SAPLCPDI 1400
S Cursor field PLMKB-VERWMERKM (18) does not exist in the screen
S Field PLMKB-VERWMERKM (18) does not exist in the screen SAPLQPAA 0150
S Field PLMKB-STICHPRVER (18) does not exist in the screen SAPLQPAA 0150
S Inspection plan with plan group 12775 for material 200999 is saved


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to solve this problem...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 05:49:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-occured-while-uploading-the-data-for-tocde-qp01-bdc/m-p/6070868#M1355556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T05:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Error occured while uploading the data for Tocde QP01 (BDC)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-occured-while-uploading-the-data-for-tocde-qp01-bdc/m-p/6070869#M1355557</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;You are getting that error in the table control. Thats because in the first instance only 18 fields will be visible. When the records exceed 18, you will have to use the OKCODE &lt;STRONG&gt;P++&lt;/STRONG&gt; to scroll down which would occupy another 18 records. Include this logic in the code when the records is more than 18.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 05:54:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-occured-while-uploading-the-data-for-tocde-qp01-bdc/m-p/6070869#M1355557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T05:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Error occured while uploading the data for Tocde QP01 (BDC)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-occured-while-uploading-the-data-for-tocde-qp01-bdc/m-p/6070870#M1355558</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;Ok,i agree with you but the thing is it was allowing to upload the data for more than 18 rows as there was logic written. It is specified in the code:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

ELSEIF itab1-serial &amp;gt; 18 AND itab1-serial &amp;lt; 35.
              IF index = 19.
                index = 2.
              ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: nav009 on Sep 9, 2009 8:25 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 06:23:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-occured-while-uploading-the-data-for-tocde-qp01-bdc/m-p/6070870#M1355558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T06:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Error occured while uploading the data for Tocde QP01 (BDC)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-occured-while-uploading-the-data-for-tocde-qp01-bdc/m-p/6070871#M1355559</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;As per your logic, only for the 19th record it will set the index to 2. Are you using the same logic for the records greater than 19 too? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 06:48:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-occured-while-uploading-the-data-for-tocde-qp01-bdc/m-p/6070871#M1355559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T06:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: Error occured while uploading the data for Tocde QP01 (BDC)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-occured-while-uploading-the-data-for-tocde-qp01-bdc/m-p/6070872#M1355560</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;&lt;/P&gt;&lt;P&gt;problem solved myself. actually i had decremented the value of and the processing is working efficiently....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: nav009 on Sep 11, 2009 9:10 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Sep 2009 07:00:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-occured-while-uploading-the-data-for-tocde-qp01-bdc/m-p/6070872#M1355560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-11T07:00:37Z</dc:date>
    </item>
  </channel>
</rss>

