<?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: how to loop on table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877002#M1140034</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have created Table control through wizard it must have already created a LOOP AT tab_control. ENLOOP. in the PBO.&lt;/P&gt;&lt;P&gt;Each line in table_control can be looped through in PBO as well as PAI through LOOP / ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Dec 2008 11:41:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-15T11:41:07Z</dc:date>
    <item>
      <title>how to loop on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877001#M1140033</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;                i have changed something in my table control with wizard. and i am trying to move all the contents from my table control to internal table. how to do that. plz resolve my pbm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                                          thnaks in advance,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 11:37:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877001#M1140033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T11:37:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to loop on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877002#M1140034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have created Table control through wizard it must have already created a LOOP AT tab_control. ENLOOP. in the PBO.&lt;/P&gt;&lt;P&gt;Each line in table_control can be looped through in PBO as well as PAI through LOOP / ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 11:41:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877002#M1140034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T11:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to loop on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877003#M1140035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOOP [AT itab INTO wa CURSOR top_line FROM n1 TO n2] &lt;/P&gt;&lt;P&gt;WITH CONTROL contrl. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 11:41:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877003#M1140035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T11:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: how to loop on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877004#M1140036</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;In PBO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab with control tc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PAI&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;module modify_itab.&lt;/P&gt;&lt;P&gt;endloop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in program&lt;/P&gt;&lt;P&gt;module modify_itab.&lt;/P&gt;&lt;P&gt;describe table itab lines tc-lines.&lt;/P&gt;&lt;P&gt;if tc-current_line &amp;gt; tc-lines&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;modify itab index tc-current_line.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please make sure the fields(internal table) you declared on the screen and the internal table declared in the program are one and same ( otherwise you need to pass the data explicitly)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ramc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 11:42:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877004#M1140036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T11:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to loop on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877005#M1140037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Himabindu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say you have a table control on screen 1010.&lt;/P&gt;&lt;P&gt;On the screen, for table control keep the names of the input/ouput fields as &lt;STRONG&gt;'itab-field_1'&lt;/STRONG&gt;, &lt;STRONG&gt;'itab-field_2'&lt;/STRONG&gt; and so on (in the same way the internal table holds the records).&lt;/P&gt;&lt;P&gt;In the flow logic of screen 1010, write:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PROCESS BEFORE OUTPUT.
  MODULE status_1010.

  LOOP WITH CONTROL po_tab. "po_tab is the name of the table control on the screen 1010
    MODULE pass_data. "module for writing data into the table control
  ENDLOOP.

PROCESS AFTER INPUT.
  MODULE user_command_1010.

  LOOP WITH CONTROL po_tab. "po_tab is the name of the table control on the screen 1010
    MODULE modify_data. "module used to modify data from table control into the internal table
  ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For PBO, in the module &lt;STRONG&gt;'pass_data'&lt;/STRONG&gt;, write code:-&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE pass_data OUTPUT.
  READ TABLE itab INDEX po_tab-current_line. "do display records in each line
ENDMODULE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For PAI, in the module &lt;STRONG&gt;'modify_data'&lt;/STRONG&gt;, write code:-&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE modify_data INPUT.
  MODIFY itab INDEX po_tab-current_line. "used to modify the data from table control on screen into the internal table
ENDMODULE.                 " DISPLAY_DATA  INPUT
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will make modification from the table control into the internal table.&lt;/P&gt;&lt;P&gt;Then, you can use this internal table as per your requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Tarun Gambhir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 05:07:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877005#M1140037</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2008-12-16T05:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to loop on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877006#M1140038</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;Just go through this link.This is exactly what you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="http://help.sap.com/erp2005_ehp_04/helpdata/EN/fc/eb381a358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/erp2005_ehp_04/helpdata/EN/fc/eb381a358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards:&lt;/P&gt;&lt;P&gt;Alok Bansal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 05:15:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877006#M1140038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T05:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: how to loop on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877007#M1140039</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;suppose u have a table control on the screen 9000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the name name of the table  is TABCOl ok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;bold&lt;/STRONG&gt;PBO&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP WITH CONTROL TABCOl.
    MODULE PASS_DATA.
    
  ENDLOOP.

*bold*PAI

LOOP WITH CONTROL TABCOl.

MODULE modify_data.

 ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

MODULE modify_data INPUT.
  MODIFY itab INDEX tabcol-current_line. "used to modify the data from table control on screen into the internal table
ENDMODULE.                 " DISPLAY_DATA

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 05:28:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877007#M1140039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T05:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to loop on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877008#M1140040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 05:32:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877008#M1140040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T05:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to loop on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877009#M1140041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To loop on internal table in the flow logic of the screen where you have created your table control,&lt;/P&gt;&lt;P&gt;You have to write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PBO Event write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop with control (table control name).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create one module here to read the data from internal table into the table control i.e,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module itab_Data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This module itab_data will read the records from the internal table into each index of table control when we write &lt;/P&gt;&lt;P&gt;Read table itab index (table control name)-current_line,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inside that module.&lt;/P&gt;&lt;P&gt;here current line works like the each index value of the table control,&lt;/P&gt;&lt;P&gt;and itab is the internal table created which is populated with the contents from the database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PAI Event write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop with Control (table control name).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module Modify .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the module modify,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to modify the contents of your itab according to the operations performed on your table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e,&lt;/P&gt;&lt;P&gt;In this module you have to write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modify itab index (table control name)-current_line,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with this itab contents are modified with respect to your table control operations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves your problem .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 05:46:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877009#M1140041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T05:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to loop on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877010#M1140042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;check this code for reference&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONTROLS flights TYPE TABLEVIEW USING SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ok_code TYPE sy-ucomm,&lt;/P&gt;&lt;P&gt;      save_ok TYPE sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab TYPE TABLE OF demo_conn,&lt;/P&gt;&lt;P&gt;      fill TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      TABLES demo_conn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lines TYPE i,&lt;/P&gt;&lt;P&gt;      limit TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM spfli INTO CORRESPONDING FIELDS OF TABLE itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE status_0100 OUTPUT.&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'SCREEN_100'.&lt;/P&gt;&lt;P&gt;  DESCRIBE TABLE itab LINES fill.&lt;/P&gt;&lt;P&gt;  flights-lines = fill.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE fill_table_control OUTPUT.&lt;/P&gt;&lt;P&gt;  READ TABLE itab INTO demo_conn INDEX flights-current_line.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE cancel INPUT.&lt;/P&gt;&lt;P&gt;  LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE read_table_control INPUT.&lt;/P&gt;&lt;P&gt;  lines = sy-loopc.&lt;/P&gt;&lt;P&gt;  MODIFY itab FROM demo_conn INDEX flights-current_line.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0100 INPUT.&lt;/P&gt;&lt;P&gt;  save_ok = ok_code.&lt;/P&gt;&lt;P&gt;  CLEAR ok_code.&lt;/P&gt;&lt;P&gt;  CASE save_ok.&lt;/P&gt;&lt;P&gt;    WHEN 'NEXT_LINE'.&lt;/P&gt;&lt;P&gt;      flights-top_line = flights-top_line + 1.&lt;/P&gt;&lt;P&gt;      limit = fill - lines + 1.&lt;/P&gt;&lt;P&gt;      IF flights-top_line &amp;gt; limit.&lt;/P&gt;&lt;P&gt;        flights-top_line = limit.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    WHEN 'PREV_LINE'.&lt;/P&gt;&lt;P&gt;      flights-top_line = flights-top_line - 1.&lt;/P&gt;&lt;P&gt;      IF flights-top_line &amp;lt; 0.&lt;/P&gt;&lt;P&gt;        flights-top_line = 0.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    WHEN 'NEXT_PAGE'.&lt;/P&gt;&lt;P&gt;      flights-top_line = flights-top_line + lines.&lt;/P&gt;&lt;P&gt;      limit = fill - lines + 1.&lt;/P&gt;&lt;P&gt;      IF flights-top_line &amp;gt; limit.&lt;/P&gt;&lt;P&gt;        flights-top_line = limit.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    WHEN 'PREV_PAGE'.&lt;/P&gt;&lt;P&gt;      flights-top_line = flights-top_line - lines.&lt;/P&gt;&lt;P&gt;      IF flights-top_line &amp;lt; 0.&lt;/P&gt;&lt;P&gt;        flights-top_line = 0.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    WHEN 'LAST_PAGE'.&lt;/P&gt;&lt;P&gt;      flights-top_line =  fill - lines + 1.&lt;/P&gt;&lt;P&gt;    WHEN 'FIRST_PAGE'.&lt;/P&gt;&lt;P&gt;      flights-top_line = 0.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A resizable table control called FLIGHTS is defined. The fields of the table control are transferred from the structure DEMO_CONN in the ABAP Dictionary. The first two columns are lead columns. The corresponding fields are output fields. A title bar, column headers, and a selection column are created. The component MARK of type character with length 1 from structure DEMO_CONN is assigned to the selection column. You can select one column and several lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It has the following flow logic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE status_0100.&lt;/P&gt;&lt;P&gt;  LOOP WITH CONTROL flights.&lt;/P&gt;&lt;P&gt;    MODULE fill_table_control.&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;  MODULE cancel AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;  LOOP WITH CONTROL flights.&lt;/P&gt;&lt;P&gt;    MODULE read_table_control.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;  MODULE user_command_0100.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 09:35:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-loop-on-table-control/m-p/4877010#M1140042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T09:35:41Z</dc:date>
    </item>
  </channel>
</rss>

