<?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: SY-STEPL in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-stepl/m-p/3965683#M947175</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; Index of the current row in a steploop or table control. &lt;/P&gt;&lt;P&gt;It is set at every loop pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if found helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R Adarsh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jun 2008 13:52:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-23T13:52:19Z</dc:date>
    <item>
      <title>SY-STEPL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-stepl/m-p/3965679#M947171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI GURUS....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the use of system variable &lt;/P&gt;&lt;P&gt;sy-stepl.  plz explain with a small example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 13:45:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-stepl/m-p/3965679#M947171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-23T13:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: SY-STEPL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-stepl/m-p/3965680#M947172</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;SY-STEPL&lt;/P&gt;&lt;P&gt;Index of current row in a screen table (table control). Is set at every loop pass. Outside a loop, for example during the POV event for a table row, SY-STEPL is not set appropriately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example in the following link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbacac35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbacac35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;prasanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: prasanth kasturi on Jun 23, 2008 3:49 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 13:47:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-stepl/m-p/3965680#M947172</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2008-06-23T13:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: SY-STEPL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-stepl/m-p/3965681#M947173</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;The system variable SY-STEPL to find out the index of the screen table row that is currently being processed. The system sets this variable each time through the loop. SY-STEPL always has values from 1 to the number of rows currently displayed. This is useful when you are transferring field values back and forth between a screen table and an internal table. You can declare a table-offset variable in your program (often called BASE, and usually initialized with SY-LOOPC) and use it with SY-STEPL to get the internal table row that corresponds to the current screen table row. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;SCREEN FLOW LOGIC&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;LOOP.&lt;/P&gt;&lt;P&gt;MODULE READ_INTTAB.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;LOOP.&lt;/P&gt;&lt;P&gt;MODULE MODIFY_INTTAB.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;STRONG&gt;ABAP MODULES&lt;/STRONG&gt;**&lt;/P&gt;&lt;P&gt;MODULE READ_INTTAB. &lt;/P&gt;&lt;P&gt;IND = BASE + SY-STEPL - 1.&lt;/P&gt;&lt;P&gt;READ TABLE INTTAB INDEX IND.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE MODIFY_INTTAB.&lt;/P&gt;&lt;P&gt;IND = BASE + SY-STEPL - 1.&lt;/P&gt;&lt;P&gt;MODIFY INTTAB INDEX IND.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sharath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 13:49:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-stepl/m-p/3965681#M947173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-23T13:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: SY-STEPL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-stepl/m-p/3965682#M947174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Diana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-stepl is used in Screen while table control processing to &lt;STRONG&gt;get Index of current table row&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please always reward for good answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 13:50:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-stepl/m-p/3965682#M947174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-23T13:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: SY-STEPL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-stepl/m-p/3965683#M947175</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; Index of the current row in a steploop or table control. &lt;/P&gt;&lt;P&gt;It is set at every loop pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if found helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;R Adarsh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 13:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-stepl/m-p/3965683#M947175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-23T13:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: SY-STEPL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-stepl/m-p/3965684#M947176</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&lt;/P&gt;&lt;P&gt;ndex of current row in a screen table (table control). Is set at every loop pass. Outside a loop, for example during the POV event for a table row, SY-STEPL is not set appropriately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sowmya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jun 2008 13:55:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-stepl/m-p/3965684#M947176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-23T13:55:49Z</dc:date>
    </item>
  </channel>
</rss>

