<?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 functionality in table control BDC-CJ02 tcode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-functionality-in-table-control-bdc-cj02-tcode/m-p/8142361#M1620506</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;I am doing a BDC with Table control for Tcode CJ02.&lt;/P&gt;&lt;P&gt;When I reach certain number of records, say 13, the page down functionality doesnt work.I tried different ways like using the BDC_OKCODE as "=P&lt;EM&gt;" and "=P&lt;/EM&gt;+".Also, I tried doing a recording by pressing the down key in the table contral, in SHDB, but none of them worked.&lt;/P&gt;&lt;P&gt;Refered a post in SDN as well, but it doesnt hold any solution.&lt;/P&gt;&lt;P&gt;Do throw some light on the same to achieve page down functionality for the bdc tcode CJ02.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Shri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 Sep 2011 00:55:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-09-14T00:55:54Z</dc:date>
    <item>
      <title>Page down functionality in table control BDC-CJ02 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-functionality-in-table-control-bdc-cj02-tcode/m-p/8142361#M1620506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;I am doing a BDC with Table control for Tcode CJ02.&lt;/P&gt;&lt;P&gt;When I reach certain number of records, say 13, the page down functionality doesnt work.I tried different ways like using the BDC_OKCODE as "=P&lt;EM&gt;" and "=P&lt;/EM&gt;+".Also, I tried doing a recording by pressing the down key in the table contral, in SHDB, but none of them worked.&lt;/P&gt;&lt;P&gt;Refered a post in SDN as well, but it doesnt hold any solution.&lt;/P&gt;&lt;P&gt;Do throw some light on the same to achieve page down functionality for the bdc tcode CJ02.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Shri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2011 00:55:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-functionality-in-table-control-bdc-cj02-tcode/m-p/8142361#M1620506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-14T00:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Page down functionality in table control BDC-CJ02 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-functionality-in-table-control-bdc-cj02-tcode/m-p/8142362#M1620507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I already posted an answer to that here &lt;SPAN __jive_macro_name="message" id="10583180"&gt;&lt;/SPAN&gt;:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P+ (=P+ in the BDC) is not a universal function code, but only one which is defined in &lt;STRONG&gt;ABAP lists&lt;/STRONG&gt; . So, 99% of time, it doesn't work for all others situations (like yours).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scrolling a table control is not so easy to do. When you record a page down on a table control in SHDB, you'll get probably a /00 which corresponds to Enter. When you play the recording, it won't scroll. The issue is that "page down" is processed in 2 parts, it changes the "top line" of the table control, and executes Enter. But it's not possible to record/play the "top line" information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution is that the program usually implements a function code:&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;either "add new line"&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;or "position at line"&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Sometimes, the function code is hidden so you must look at inside the program (or search SAP notes, like here: [SAP note 187946 (No positioning on PRT overview in routing)|https://service.sap.com/sap/support/notes/187946 ])&lt;/P&gt;&lt;P&gt;And sometimes, there's no function code at all, and then you're stuck ! (or use SAP GUI scripting, but it may only work in dialog).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;For CJ02, I can't tell how to scroll through BDC, but anyway, there is a BAPI (don't remember the name, search the forum, it will be easy to find it), so you should always prefer them over BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2011 04:27:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-functionality-in-table-control-bdc-cj02-tcode/m-p/8142362#M1620507</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2011-09-14T04:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Page down functionality in table control BDC-CJ02 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-functionality-in-table-control-bdc-cj02-tcode/m-p/8142363#M1620508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try doing table control with wizard and just check the code used for scroll/page down , it would be helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2011 04:47:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-functionality-in-table-control-bdc-cj02-tcode/m-p/8142363#M1620508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-14T04:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Page down functionality in table control BDC-CJ02 tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-functionality-in-table-control-bdc-cj02-tcode/m-p/8142364#M1620509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What I've done to get around this is:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;read the input file or table in reverse order&lt;/LI&gt;&lt;LI&gt;add a single entry&lt;/LI&gt;&lt;LI&gt;move the cursor to the top left and enter the record&lt;/LI&gt;&lt;LI&gt;insert a single line in the table&lt;/LI&gt;&lt;LI&gt;repeat until finished with data&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way I can get the data in its original order (since we're basically filling the BDC backwards by using the insert line method).&amp;nbsp; The only caveat I have is that the maximum number of records you can do per transaction is not constant so it will take some fine tuning.&amp;nbsp; I've had transactions which will let me enter an infinite number of records this way and I've had transactions which won't even let me fill up a single page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck!﻿﻿﻿﻿&lt;/P&gt;&lt;P&gt;Scott&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 May 2012 13:56:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/page-down-functionality-in-table-control-bdc-cj02-tcode/m-p/8142364#M1620509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-29T13:56:00Z</dc:date>
    </item>
  </channel>
</rss>

