<?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: Step Loop in Dialogue Programming. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-in-dialogue-programming/m-p/7642419#M1572361</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;  thanks for the reply..&lt;/P&gt;&lt;P&gt;  But what is the value TBCL-TOP_LINE will contain..??&lt;/P&gt;&lt;P&gt;  from where can i get the value..??&lt;/P&gt;&lt;P&gt;  if you are refering to table control... then will make clear that i am using step loop concept.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Feb 2011 13:03:26 GMT</pubDate>
    <dc:creator>arafat_shaik</dc:creator>
    <dc:date>2011-02-04T13:03:26Z</dc:date>
    <item>
      <title>Step Loop in Dialogue Programming.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-in-dialogue-programming/m-p/7642417#M1572359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; we have a requrement like when i select a particular record from the screen in a group of records...&lt;/P&gt;&lt;P&gt;that particular record should be carried to the next screen. how to achieve this..,&lt;/P&gt;&lt;P&gt;  I tried using sy-curow or get cursor ..line.. and read the internal table which is used to display the group of records,&lt;/P&gt;&lt;P&gt;  it works fine for the first set of display... but the actual problem comes when the user scrolls down and places the cursor there  it will read that particular position of step loop.. not the actual line number of the internal table..&lt;/P&gt;&lt;P&gt;  any help in this regard is very helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2011 11:51:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-in-dialogue-programming/m-p/7642417#M1572359</guid>
      <dc:creator>arafat_shaik</dc:creator>
      <dc:date>2011-02-04T11:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: Step Loop in Dialogue Programming.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-in-dialogue-programming/m-p/7642418#M1572360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To get the current selected line. you have to do it like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please correct if the forumula is wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
get cursor line lv_line.
if tbcl-top_line ne 1.
selected_line = ( lv_line + tbcl-top_line ) - 1.
else.
selected_line = lv_line.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2011 12:08:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-in-dialogue-programming/m-p/7642418#M1572360</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-02-04T12:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Step Loop in Dialogue Programming.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-in-dialogue-programming/m-p/7642419#M1572361</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;  thanks for the reply..&lt;/P&gt;&lt;P&gt;  But what is the value TBCL-TOP_LINE will contain..??&lt;/P&gt;&lt;P&gt;  from where can i get the value..??&lt;/P&gt;&lt;P&gt;  if you are refering to table control... then will make clear that i am using step loop concept.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2011 13:03:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-in-dialogue-programming/m-p/7642419#M1572361</guid>
      <dc:creator>arafat_shaik</dc:creator>
      <dc:date>2011-02-04T13:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: Step Loop in Dialogue Programming.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-in-dialogue-programming/m-p/7642420#M1572362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tbcl( table control ) - topline( table control property )  You can use it directly. In debugger double click on the tablecontrol name, you will find it. Just code this in PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess step loops are obsolete now&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Feb 2011 13:14:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-in-dialogue-programming/m-p/7642420#M1572362</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-02-04T13:14:55Z</dc:date>
    </item>
  </channel>
</rss>

