<?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 Page down in Customised TCODE. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-in-customised-tcode/m-p/6720116#M1455285</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;Also I note that in the customised TCODE the pagedown option is being disabled (in the tool bar ).Does this have any impact on the page down I am trying to do.If so how can I enable the page down option for the custmised TCOde.&lt;/P&gt;&lt;P&gt;&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>Mon, 08 Mar 2010 05:52:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-08T05:52:11Z</dc:date>
    <item>
      <title>Page down in Customised TCODE.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-in-customised-tcode/m-p/6720116#M1455285</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;Also I note that in the customised TCODE the pagedown option is being disabled (in the tool bar ).Does this have any impact on the page down I am trying to do.If so how can I enable the page down option for the custmised TCOde.&lt;/P&gt;&lt;P&gt;&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>Mon, 08 Mar 2010 05:52:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-in-customised-tcode/m-p/6720116#M1455285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-08T05:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Page down in Customised TCODE.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-in-customised-tcode/m-p/6720117#M1455286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    same problem occured for me for standard tcode. But i solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inside the loop use the code like this. I think in your case only 7 records is viewable. so that use 7 instead 15.&lt;/P&gt;&lt;P&gt;call screen before and after using =P+ like the below code. Replace the program name and screen no according to your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if l_count = '15'.&lt;/P&gt;&lt;P&gt;        PERFORM bdc_dynpro      USING 'SAPLCPDI' '3400'.&lt;/P&gt;&lt;P&gt;        PERFORM bdc_field       USING 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                                      '=P+'.&lt;/P&gt;&lt;P&gt;        PERFORM bdc_dynpro      USING 'SAPLCPDI' '3400'.&lt;/P&gt;&lt;P&gt;        PERFORM bdc_field       USING 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                      'PLPOD-VORNR(02)'.&lt;/P&gt;&lt;P&gt;        CLEAR l_count.&lt;/P&gt;&lt;P&gt;        l_count = l_count + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;Please try this and let me know. If it was not solved explain your requirement clearly. let me help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabu S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 06:43:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-in-customised-tcode/m-p/6720117#M1455286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-08T06:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Page down in Customised TCODE.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-in-customised-tcode/m-p/6720118#M1455287</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;Check if scroll is getting captured in the recording. Means after entering 1 record press scroll, check if it is getting captured.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise check if there is any option to set position in the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which tcode you are working on?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Archana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Mar 2010 06:58:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-in-customised-tcode/m-p/6720118#M1455287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-08T06:58:01Z</dc:date>
    </item>
  </channel>
</rss>

