<?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 Automatic page down in table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-page-down-in-table-control/m-p/7525750#M1560919</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;We have a customised module pool program with a table control&lt;/P&gt;&lt;P&gt;where the data input is done using a barcode scanner. The table control have &lt;/P&gt;&lt;P&gt;twelve rows.The requirement is after the last line is entered the table control &lt;/P&gt;&lt;P&gt;it should have an automatic page down.&lt;/P&gt;&lt;P&gt;(No Sy-ucomm is captured after last line is entered)&lt;/P&gt;&lt;P&gt;Is it possible to trigger a automatic page down in the PBO.How this can be achieved?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Charumathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Dec 2010 05:18:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-12-28T05:18:41Z</dc:date>
    <item>
      <title>Automatic page down in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-page-down-in-table-control/m-p/7525750#M1560919</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;We have a customised module pool program with a table control&lt;/P&gt;&lt;P&gt;where the data input is done using a barcode scanner. The table control have &lt;/P&gt;&lt;P&gt;twelve rows.The requirement is after the last line is entered the table control &lt;/P&gt;&lt;P&gt;it should have an automatic page down.&lt;/P&gt;&lt;P&gt;(No Sy-ucomm is captured after last line is entered)&lt;/P&gt;&lt;P&gt;Is it possible to trigger a automatic page down in the PBO.How this can be achieved?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Charumathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 05:18:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-page-down-in-table-control/m-p/7525750#M1560919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-28T05:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic page down in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-page-down-in-table-control/m-p/7525751#M1560920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You'll need to manipulate the parameter that points to the itab record that should show up as the first line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry i don't have SAP here at the moment... so i can´t tell you the name of that parameter (i believe it's part of the table control).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 19:02:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-page-down-in-table-control/m-p/7525751#M1560920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-28T19:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic page down in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-page-down-in-table-control/m-p/7525752#M1560921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You always hit a enter after each line is entered. So that the event can be captured. So when the sy-ucomm is captured in PAI you can check if the line is 12 then code a page down.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The enter key must be recorded while creating the barcode( must be placed as the last action in the barcode design). I have done it this way &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope Maen meant the current_line property of table control. Still without the control entering the PAI nothing can be done. To get the control in PAI the user command has to be triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_jump = 11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'ENTE'.&lt;/P&gt;&lt;P&gt;GET CURSOR LINE lv_line.&lt;/P&gt;&lt;P&gt;lv_line = lv_line  - tbcl-top_line.&lt;/P&gt;&lt;P&gt;if lv_line = v_jump.&lt;/P&gt;&lt;P&gt;tbcl-top_line = lv_line + 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Dec 2010 19:21:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-page-down-in-table-control/m-p/7525752#M1560921</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-12-28T19:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic page down in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-page-down-in-table-control/m-p/7525753#M1560922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Keshav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The sy-ucomm is ' ' when the user enters the data using the barcode scanner,&lt;/P&gt;&lt;P&gt; Do i have to write any code to change the Ok_code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or will it work if i write in the PAI like this( if the ok_code is null),Please let me know&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case ok_code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when '  '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;code to set the top line&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PBO &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set cursor &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; Regards,&lt;/P&gt;&lt;P&gt;Charumathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Dec 2010 05:23:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-page-down-in-table-control/m-p/7525753#M1560922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-29T05:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic page down in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-page-down-in-table-control/m-p/7525754#M1560923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;current_line property of table control&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; That's the one. Thanks &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Barcode readers can be programmed to send an ENTER when scanning, thus you will always go to the PAI of the screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Dec 2010 10:06:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-page-down-in-table-control/m-p/7525754#M1560923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-29T10:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic page down in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-page-down-in-table-control/m-p/7525755#M1560924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi in the tool bar the green tick mark is for enter button, create a pf status and assign a function code to it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Dec 2010 11:11:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-page-down-in-table-control/m-p/7525755#M1560924</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-12-29T11:11:14Z</dc:date>
    </item>
  </channel>
</rss>

