<?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 Reg Page Down in table control for Customised TCODE. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-page-down-in-table-control-for-customised-tcode/m-p/6716879#M1454722</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   When I did the recording for customised TCODE I obtained the value of PageDown to be /00.But when tried in the BDC program it did not trigger a page break.I have set the default size of the Window as well.&lt;/P&gt;&lt;P&gt;After the max no of entries (7 ) for the table control is obtained the program again starts over writing from the first record.&lt;/P&gt;&lt;P&gt;I tried various options of p+,np,pgba,POAN_T,POAN ETC ETC.&lt;/P&gt;&lt;P&gt;how can I handle this.&lt;/P&gt;&lt;P&gt;Kindly advise.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Feb 2010 03:09:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-24T03:09:41Z</dc:date>
    <item>
      <title>Reg Page Down in table control for Customised TCODE.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-page-down-in-table-control-for-customised-tcode/m-p/6716879#M1454722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   When I did the recording for customised TCODE I obtained the value of PageDown to be /00.But when tried in the BDC program it did not trigger a page break.I have set the default size of the Window as well.&lt;/P&gt;&lt;P&gt;After the max no of entries (7 ) for the table control is obtained the program again starts over writing from the first record.&lt;/P&gt;&lt;P&gt;I tried various options of p+,np,pgba,POAN_T,POAN ETC ETC.&lt;/P&gt;&lt;P&gt;how can I handle this.&lt;/P&gt;&lt;P&gt;Kindly advise.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2010 03:09:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-page-down-in-table-control-for-customised-tcode/m-p/6716879#M1454722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-24T03:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Reg Page Down in table control for Customised TCODE.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-page-down-in-table-control-for-customised-tcode/m-p/6716880#M1454723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Manju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Check this thread|http://wiki.sdn.sap.com/wiki/display/Snippets/bdc(bom)&lt;EM&gt;table&lt;/EM&gt;control]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.sdn.sap.com/wiki/display/Snippets/bdc(bom)" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/display/Snippets/bdc(bom)&lt;/A&gt;&lt;EM&gt;table&lt;/EM&gt;control&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheerz&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2010 03:49:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-page-down-in-table-control-for-customised-tcode/m-p/6716880#M1454723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-24T03:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Reg Page Down in table control for Customised TCODE.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-page-down-in-table-control-for-customised-tcode/m-p/6716881#M1454724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manju,&lt;/P&gt;&lt;P&gt;I can understand your problem as I have implemented similar thing with CJ02 Tcode BDC prg, there was also table control&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i used page down - OK CODE  '=P+'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One key thing for you to recognise here is that OK CODE is always for the previuos screen,&lt;/P&gt;&lt;P&gt;so after page down have anotherdynpro for same screen like this : &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
        PERFORM xx060_dynpro_field   USING: 'BDC_OKCODE'	'=P+'.
        PERFORM xx050_new_dynpro     USING: 'SAPLCJWB'    '0901' 'X'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you still have problems, I can share my code for reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Salil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Feb 2010 04:26:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-page-down-in-table-control-for-customised-tcode/m-p/6716881#M1454724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-24T04:26:38Z</dc:date>
    </item>
  </channel>
</rss>

