<?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: issue finding current line when page down occurs - table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-finding-current-line-when-page-down-occurs-table-control/m-p/6938270#M1486897</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;try this Way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN PBO At MODULE STATUS_&amp;lt;Screen-Number&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;13 is the number of cells in the Tables control&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; TBC_200 is the Table control Name....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-ucomm = 'PGUP'.&lt;/P&gt;&lt;P&gt;     if TBC_200-current_line GE 14.&lt;/P&gt;&lt;P&gt;        TBC_200-top_line = TBC_200-top_line - 13.&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  if sy-ucomm = 'PGDN'.&lt;/P&gt;&lt;P&gt;     if TBC_200-current_line lE TBC_200-lines.&lt;/P&gt;&lt;P&gt;        TBC_200-top_line = TBC_200-top_line + 13.&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;  ENDIF.&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;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 May 2010 12:58:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-07T12:58:49Z</dc:date>
    <item>
      <title>issue finding current line when page down occurs - table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-finding-current-line-when-page-down-occurs-table-control/m-p/6938268#M1486895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to find the current line index of the table control? The "Current line" property of table control gives the index of the current line when the cursor is in the first page. If it exceeds the first page, then it is not returning the correct value.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, first page has 10 lines and the cursor is in the 5th line of the 2nd page, then the index must be returned as 15.. But current line returns the value as 5.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls tell me how to find this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 May 2010 14:47:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-finding-current-line-when-page-down-occurs-table-control/m-p/6938268#M1486895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-05T14:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: issue finding current line when page down occurs - table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-finding-current-line-when-page-down-occurs-table-control/m-p/6938269#M1486896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try FM &lt;STRONG&gt;SCROLLING_IN_TABLE&lt;/STRONG&gt; instead. It conforms to the SAP style guide and is documented.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 May 2010 14:56:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-finding-current-line-when-page-down-occurs-table-control/m-p/6938269#M1486896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-05T14:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: issue finding current line when page down occurs - table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-finding-current-line-when-page-down-occurs-table-control/m-p/6938270#M1486897</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;try this Way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN PBO At MODULE STATUS_&amp;lt;Screen-Number&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;13 is the number of cells in the Tables control&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; TBC_200 is the Table control Name....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-ucomm = 'PGUP'.&lt;/P&gt;&lt;P&gt;     if TBC_200-current_line GE 14.&lt;/P&gt;&lt;P&gt;        TBC_200-top_line = TBC_200-top_line - 13.&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  if sy-ucomm = 'PGDN'.&lt;/P&gt;&lt;P&gt;     if TBC_200-current_line lE TBC_200-lines.&lt;/P&gt;&lt;P&gt;        TBC_200-top_line = TBC_200-top_line + 13.&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;  ENDIF.&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;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 12:58:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-finding-current-line-when-page-down-occurs-table-control/m-p/6938270#M1486897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-07T12:58:49Z</dc:date>
    </item>
  </channel>
</rss>

