<?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 table control page wise in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-table-control-page-wise/m-p/2947640#M694903</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see my following code in my case there was 5 records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_screen using 'SAPMM07I' '0701' 'X'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RM07I-IBLNR' docno.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE' '/00'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_screen using 'SAPMM07I' '0731' 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i = 1.&lt;/P&gt;&lt;P&gt;loop at itab_stock.&lt;/P&gt;&lt;P&gt;  quantchar = itab_stock-menge.&lt;/P&gt;&lt;P&gt;  concatenate 'ISEG-ERFMG(' i ')' into fnam.&lt;/P&gt;&lt;P&gt;  perform bdc_field using 'BDC_CURSOR' FNAM.&lt;/P&gt;&lt;P&gt;  perform bdc_field using  fnam quantchar.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; BREAK-POINT.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  if i = '5'.&lt;/P&gt;&lt;P&gt;  perform bdc_field using 'BDC_OKCODE' '/00'.&lt;/P&gt;&lt;P&gt;  perform bdc_screen using 'SAPMM07I' '0731' 'X'.&lt;/P&gt;&lt;P&gt;  i = 0.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  i = i + 1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE' '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_screen using 'SAPMM07I' '0731' 'X'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE' '=BU'.&lt;/P&gt;&lt;P&gt;call transaction 'MI04' using itab_bdcdata mode 'A'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Oct 2007 07:10:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-22T07:10:49Z</dc:date>
    <item>
      <title>bdc table control page wise</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-table-control-page-wise/m-p/2947639#M694902</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 with 14 records&lt;/P&gt;&lt;P&gt;but is data is more than one page  i.e  24 records 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;Code is ok but ... how to evoke next page whan first page is full-fill.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:33:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-table-control-page-wise/m-p/2947639#M694902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-22T06:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: bdc table control page wise</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-table-control-page-wise/m-p/2947640#M694903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see my following code in my case there was 5 records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_screen using 'SAPMM07I' '0701' 'X'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RM07I-IBLNR' docno.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE' '/00'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_screen using 'SAPMM07I' '0731' 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i = 1.&lt;/P&gt;&lt;P&gt;loop at itab_stock.&lt;/P&gt;&lt;P&gt;  quantchar = itab_stock-menge.&lt;/P&gt;&lt;P&gt;  concatenate 'ISEG-ERFMG(' i ')' into fnam.&lt;/P&gt;&lt;P&gt;  perform bdc_field using 'BDC_CURSOR' FNAM.&lt;/P&gt;&lt;P&gt;  perform bdc_field using  fnam quantchar.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; BREAK-POINT.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  if i = '5'.&lt;/P&gt;&lt;P&gt;  perform bdc_field using 'BDC_OKCODE' '/00'.&lt;/P&gt;&lt;P&gt;  perform bdc_screen using 'SAPMM07I' '0731' 'X'.&lt;/P&gt;&lt;P&gt;  i = 0.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  i = i + 1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE' '/00'.&lt;/P&gt;&lt;P&gt;perform bdc_screen using 'SAPMM07I' '0731' 'X'.&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE' '=BU'.&lt;/P&gt;&lt;P&gt;call transaction 'MI04' using itab_bdcdata mode 'A'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 07:10:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-table-control-page-wise/m-p/2947640#M694903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-22T07:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: bdc table control page wise</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-table-control-page-wise/m-p/2947641#M694904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks madan,&lt;/P&gt;&lt;P&gt;Point has been given&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 10:19:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bdc-table-control-page-wise/m-p/2947641#M694904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T10:19:07Z</dc:date>
    </item>
  </channel>
</rss>

