<?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 - No Input in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-no-input/m-p/3487466#M838511</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to specify&lt;/P&gt;&lt;P&gt;output only, input, output attributes for the fields of the table control in SE51.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Mar 2008 15:49:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-13T15:49:31Z</dc:date>
    <item>
      <title>Table Control - No Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-no-input/m-p/3487465#M838510</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;I want to show table data in a table control with no input-possibility in some cases (not in all, so making the whole control as output in the layout-editor is no solution for me). &lt;/P&gt;&lt;P&gt;I tried to make it with "loop at screen" and "screen-xxx" but it doesn´t work like for normal dynpro-fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for your answers!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2008 15:10:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-no-input/m-p/3487465#M838510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-13T15:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control - No Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-no-input/m-p/3487466#M838511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to specify&lt;/P&gt;&lt;P&gt;output only, input, output attributes for the fields of the table control in SE51.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2008 15:49:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-no-input/m-p/3487466#M838511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-13T15:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control - No Input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-no-input/m-p/3487467#M838512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;process before output.

* Set screen attributes for top part of screen
  MODULE modify_screen_0100_top.

* Set screen attributes for table control
  LOOP AT itab_0100 with control tab_ctl
                    cursor tab_ctl-top_line.
    MODULE move_data_to_0100.
    MODULE modify_screen_0100.
  ENDLOOP.

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  MODIFY_SCREEN_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
  MODULE modify_screen_0100 OUTPUT.

  LOOP AT SCREEN.
    IF screen-group1  = '001'.
      screen-input = '0'.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.

ENDMODULE.                 " MODIFY_SCREEN_0100  OUTPUT&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2008 16:01:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-no-input/m-p/3487467#M838512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-13T16:01:56Z</dc:date>
    </item>
  </channel>
</rss>

