<?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: table control dynpro in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dynpro/m-p/12093367#M1972123</link>
    <description>&lt;P&gt;In the attributes of the table control, you enter the name of the selection column of the table control (of the internal table) which contains if the row is selected. The field of the internal table has to be one character long, and will have value 'X' (selected) or ' ' (not selected).&lt;/P&gt;&lt;P&gt;For more information, please have a look at the &lt;A href="https://help.sap.com/viewer/search?q=%22Table%20Controls%22&amp;amp;language=en-US&amp;amp;product=SAP_NETWEAVER_AS_ABAP_752"&gt;documentation of "Table controls" in "Classic screen programming"&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Mon, 25 Nov 2019 09:45:30 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2019-11-25T09:45:30Z</dc:date>
    <item>
      <title>table control dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dynpro/m-p/12093366#M1972122</link>
      <description>&lt;P&gt;how do I figure out which multiple rows are selected? there is an attribute of the table control?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 09:30:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dynpro/m-p/12093366#M1972122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-11-25T09:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: table control dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dynpro/m-p/12093367#M1972123</link>
      <description>&lt;P&gt;In the attributes of the table control, you enter the name of the selection column of the table control (of the internal table) which contains if the row is selected. The field of the internal table has to be one character long, and will have value 'X' (selected) or ' ' (not selected).&lt;/P&gt;&lt;P&gt;For more information, please have a look at the &lt;A href="https://help.sap.com/viewer/search?q=%22Table%20Controls%22&amp;amp;language=en-US&amp;amp;product=SAP_NETWEAVER_AS_ABAP_752"&gt;documentation of "Table controls" in "Classic screen programming"&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 09:45:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dynpro/m-p/12093367#M1972123</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-11-25T09:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: table control dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dynpro/m-p/12093368#M1972124</link>
      <description>&lt;P&gt;but the internal table flag how do I figure out when to put it at x&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 10:09:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dynpro/m-p/12093368#M1972124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-11-25T10:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: table control dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dynpro/m-p/12093369#M1972125</link>
      <description>&lt;P&gt;If you assign the selection column to the one-character component SELECTED of your internal table, here is an example dynpro with table control and program.&lt;/P&gt;&lt;P&gt;Dynpro flow logic:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS BEFORE OUTPUT.
 LOOP AT itab WITH CONTROL tabctrl INTO wa.
   MODULE pbo_line.
 ENDLOOP.

PROCESS AFTER INPUT.
 LOOP AT itab INTO wa.
   MODULE pai_line.
 ENDLOOP.
 MODULE action.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Program:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE action INPUT.
  IF ucomm = 'EXECUTE'.
    LOOP AT itab INTO wa WHERE selected = abap_true.
      " process the line which is selected
    ENDLOOP.
  ENDIF.
ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;See also demo programs:&lt;/P&gt;&lt;UL&gt;
&lt;LI&gt;DEMO_DYNPRO_TABCONT_LOOP&lt;/LI&gt;&lt;LI&gt;DEMO_DYNPRO_TABCONT_LOOP_AT&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 25 Nov 2019 10:33:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dynpro/m-p/12093369#M1972125</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-11-25T10:33:05Z</dc:date>
    </item>
  </channel>
</rss>

