<?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 Table control bdc page wise in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-bdc-page-wise/m-p/2947010#M694754</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi expert,&lt;/P&gt;&lt;P&gt;i am working for MEK1 tcode this bdc working fine when i am using single page&lt;/P&gt;&lt;P&gt;but is data is more than one page then how to deal with it..&lt;/P&gt;&lt;P&gt;I haver recorded  Next page button also.&lt;/P&gt;&lt;P&gt; perform bdc_field       using 'BDC_OKCODE'    '=P+'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Code is ok but ... how to evoke next page whan first page is full-fill.&amp;lt;/b&amp;gt;send hint...&lt;/P&gt;&lt;P&gt;thanks..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**********Point is assured **********&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Oct 2007 06:17:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-22T06:17:22Z</dc:date>
    <item>
      <title>Table control bdc page wise</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-bdc-page-wise/m-p/2947010#M694754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi expert,&lt;/P&gt;&lt;P&gt;i am working for MEK1 tcode this bdc working fine when i am using single page&lt;/P&gt;&lt;P&gt;but is data is more than one page then how to deal with it..&lt;/P&gt;&lt;P&gt;I haver recorded  Next page button also.&lt;/P&gt;&lt;P&gt; perform bdc_field       using 'BDC_OKCODE'    '=P+'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Code is ok but ... how to evoke next page whan first page is full-fill.&amp;lt;/b&amp;gt;send hint...&lt;/P&gt;&lt;P&gt;thanks..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**********Point is assured **********&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 06:17:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-bdc-page-wise/m-p/2947010#M694754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-22T06:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: Table control bdc page wise</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-bdc-page-wise/m-p/2947011#M694755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;Add this code for next page :&lt;/P&gt;&lt;P&gt;       bdc_data-program = 'pgmname'.&lt;/P&gt;&lt;P&gt;       bdc_data-dynpro = 'screen no'.&lt;/P&gt;&lt;P&gt;         bdc_data-dynbegin = 'X'.&lt;/P&gt;&lt;P&gt;         APPEND bdc_data.&lt;/P&gt;&lt;P&gt;         CLEAR bdc_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         bdc_data-fnam = 'BDC_OKCODE'.&lt;/P&gt;&lt;P&gt;         bdc_data-fval = '=NP'.&lt;/P&gt;&lt;P&gt;       APPEND bdc_data.&lt;/P&gt;&lt;P&gt;       CLEAR bdc_data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 06:20:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-bdc-page-wise/m-p/2947011#M694755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-22T06:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Table control bdc page wise</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-bdc-page-wise/m-p/2947012#M694756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jim,&lt;/P&gt;&lt;P&gt;          u first manually count how many records u can upload on the first page.&lt;/P&gt;&lt;P&gt; and then set a counter. when the counter exceeds the number of records u can upload on the single page then use the ok-code =P+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF counter GT 22. " here 22 is wat i have calculated manually&lt;/P&gt;&lt;P&gt;      counter = 2.&lt;/P&gt;&lt;P&gt;      flag = 1.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_dynpro      USING 'SAPLCPDI'         '0140'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'BDC_OKCODE'       '=P+'.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now also since ur records exceeds first page u have to run this code for every record after the first page,i dont think it will be usefull jst running above code once.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and thts y i have used one variable called flag.&lt;/P&gt;&lt;P&gt; so u need to add this code also jst after the above code.&lt;/P&gt;&lt;P&gt;  if flag = 1.&lt;/P&gt;&lt;P&gt;   PERFORM bdc_dynpro      USING 'SAPLCPDI'         '0140'.&lt;/P&gt;&lt;P&gt;      PERFORM bdc_field       USING 'BDC_OKCODE'       '=P+'.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also dont forget to set flag back to zero after all the records of the corresponding data r uploaded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 06:44:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-bdc-page-wise/m-p/2947012#M694756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-22T06:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: Table control bdc page wise</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-bdc-page-wise/m-p/2947013#M694757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks to all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Dec 2007 12:46:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-bdc-page-wise/m-p/2947013#M694757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-03T12:46:34Z</dc:date>
    </item>
  </channel>
</rss>

