<?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 Vs Table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-vs-table-control/m-p/2121053#M444568</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Just click on the link.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STEP LOOPS   :&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/d1/801c13454211d189710000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/d1/801c13454211d189710000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLE CONTROL:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;V.Raghavender.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Apr 2007 07:53:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-13T07:53:40Z</dc:date>
    <item>
      <title>Step Loop Vs Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-vs-table-control/m-p/2121051#M444566</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;What is difference between Step loop and table control ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 07:51:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-vs-table-control/m-p/2121051#M444566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T07:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: Step Loop Vs Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-vs-table-control/m-p/2121052#M444567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;STEP LOOPS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step Loops are type of screen table . Step loops are repeated blocks of field in a screen. Each block contains one or more fields and these blocks are repeated. Step loops aren&amp;#146;t like actual table. You can scroll vertically but not horizontally. Three steps are associated with creation of step loops:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#149; Creation of step loops on screen, which includes declaring fields on the screen and then defining the step, loops for these fields.&lt;/P&gt;&lt;P&gt;&amp;#149; Passing data to the step loop is exactly similar to the passing of data to table controls.&lt;/P&gt;&lt;P&gt;&amp;#149; In step loop, you don&amp;#146;t need to define the step loop as such in the module pool program but the cursor needs to be defined in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types of Step Loops&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;#149; Static &amp;#150; Static Step Loop (SSL) have fixed size that cannot be changed during the runtime. If user resizes the window, the size of the static step loop is not changed.&lt;/P&gt;&lt;P&gt;&amp;#149; Dynamic &amp;#150; Dynamic Step Loop (DSL) is variable in size. When the user resizes the window, the system increases or decreases the number of the step loop blocks. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can have only one dynamic step loop and can have as many static loops in your transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Programming with the Static and dynamic step loop is exactly same. For the system or for the user it doesn&amp;#146;t make any difference whether it is static or dynamic step loop. Only attribute, which you fix during designing of the step loop, is type attribute for step loop F for fixed i.e static and V for variable i.e. dynamic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Writing code for Step Loop in the flow logic. &lt;/P&gt;&lt;P&gt;PBO.&lt;/P&gt;&lt;P&gt;Loop at itab cursor cl.&lt;/P&gt;&lt;P&gt;Module set.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;PAI. &lt;/P&gt;&lt;P&gt;Loop at itab.&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Empty loop is must for both table control and step loop&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP AT statement for step loops and Table controls is similar. Loop At statement transfers the data to screen table. You need to have the Module to assign the values for the screen table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In module pool program you need to define the cursor.&lt;/P&gt;&lt;P&gt;Date: CL TYPE i.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Cursor parameter tells which line of step loop display should start.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;#147;Module Set&amp;#148; in module pool program assigns the values to step loop fields, which is similar to table controls. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to this program DEMO_DYNPRO_STEP_LOOP&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Table controls:&lt;/P&gt;&lt;P&gt;Used to display multiple records, with vertical and horizontal scroll bars and the facility for selecting the records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ANJI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 07:53:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-vs-table-control/m-p/2121052#M444567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T07:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Step Loop Vs Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-vs-table-control/m-p/2121053#M444568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Just click on the link.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STEP LOOPS   :&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/d1/801c13454211d189710000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/d1/801c13454211d189710000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLE CONTROL:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;V.Raghavender.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 07:53:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-vs-table-control/m-p/2121053#M444568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T07:53:40Z</dc:date>
    </item>
    <item>
      <title>Re: Step Loop Vs Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-vs-table-control/m-p/2121054#M444569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the difference is as follows&lt;/P&gt;&lt;P&gt;Some of added features of Table Controls over Step Loops:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scroll through the table vertically and horizontally &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re-size the width of a column &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scroll within a field (when field contents are wider than the field) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select table rows or columns &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Re-order the sequence of columns &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make selective columns editable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save the current display settings for future use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Handled locally by your Systems SAP GUI Frontend &amp;#150; Minimal programming &lt;/P&gt;&lt;P&gt;needed.&lt;/P&gt;&lt;P&gt;Displaying large amounts of data in a table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can be configured by the user&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Allows you to change several lines of a table at the same time&lt;/P&gt;&lt;P&gt;It is processed using a loop&lt;/P&gt;&lt;P&gt;The top line is the header line. One line can have up to 255 columns.&lt;/P&gt;&lt;P&gt;PAI is triggered when you scroll vertically or save the settings &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;navjot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpfull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 08:07:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-vs-table-control/m-p/2121054#M444569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T08:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Step Loop Vs Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-vs-table-control/m-p/2121055#M444570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Table controls have both horizontal and vertical scrollers and cursor control logic is designed implicitly.&lt;/P&gt;&lt;P&gt;Step loops have only horizontal scrollers and cursor control logic is to be designed by the user explicitly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 08:18:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-loop-vs-table-control/m-p/2121055#M444570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T08:18:25Z</dc:date>
    </item>
  </channel>
</rss>

