<?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: Making all fields editable in Table Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532716#M1426801</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;PS: t_data has only 1 entry in it. Is it the reason?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, that is correct.  After adding your selected records to the internal table, add blank lines to it as well. Like 20 or so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;clear wa.
do 20 times.
    append wa to itab.
enddo.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Jan 2010 15:22:46 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2010-01-15T15:22:46Z</dc:date>
    <item>
      <title>Making all fields editable in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532714#M1426799</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;I have created a Table Conrol with 2 fields on it. However when the screen is displayed only the first row is "Editable".&lt;/P&gt;&lt;P&gt;Can you please let me know how can I make all the fields that are on the screen can be "Editable"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Flow Logic is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;process before output.
 module status_0615.

  loop at t_data into w_data with control tc_data.
    module read_data.
  endloop.

*-------------------------------------------------------------*
process after input.
 module exit_0615 at exit-command.

   loop at t_data.
    module modify_data.
   endloop.

 module user_command_0615.

*-------------------------------------------------------------*
module read_data output.

    loop at screen.     
      screen-input = 1.
        modify screen.
    endloop.

endmodule.                 "modify_data output
*-------------------------------------------------------------*
module modify_data input.

 w_data-docno = doc_no.
 modify t_data from w_data transporting doc_no
    where qmnum = w_data-qmnum
      and matnr = w_data-matnr.

endmodule.                 "read_data input
*-------------------------------------------------------------*&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I greatly appreciate your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: &lt;STRONG&gt;t_data has only 1 entry in it. Is it the reason?&lt;/STRONG&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>Fri, 15 Jan 2010 15:03:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532714#M1426799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-15T15:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Making all fields editable in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532715#M1426800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Remove this tattement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    loop at screen.     
      screen-input = 1.
        modify screen.
    endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 15:22:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532715#M1426800</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-01-15T15:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: Making all fields editable in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532716#M1426801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;PS: t_data has only 1 entry in it. Is it the reason?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, that is correct.  After adding your selected records to the internal table, add blank lines to it as well. Like 20 or so.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;clear wa.
do 20 times.
    append wa to itab.
enddo.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 15:22:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532716#M1426801</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2010-01-15T15:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Making all fields editable in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532717#M1426802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have added enough lines to the internal table to fill the screen in the past, but this has always seemed awkward to me. You have to remove the blank lines for actual processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recall seeing a more ABAPer friendly solution in the forum within the past year or so. If you search the forum or use Googel, you should be able to find it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 15:27:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532717#M1426802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-15T15:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Making all fields editable in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532718#M1426803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;set the 'lines' property of table control to 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 15:37:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532718#M1426803</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-01-15T15:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Making all fields editable in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532719#M1426804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all for the kind responses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keshav,&lt;/P&gt;&lt;P&gt;I have already tried you suggestion. It didn't work. Thanks though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your logic did work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;Yes. I feel the same. I will try to search the forum as you mentioned. Is there a "Wiki" or something you know that provide more insight on this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 15:46:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532719#M1426804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-15T15:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: Making all fields editable in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532720#M1426805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;set the 'lines' property of table control to 0.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keshav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please elaborate it little bit? I'm still a learner in Dialog Programming. &lt;/P&gt;&lt;P&gt;Where can I set this - Is it in the "Elelement List" or "Layout"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 15:55:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532720#M1426805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-15T15:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Making all fields editable in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532721#M1426806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check program &lt;STRONG&gt;DEMO_DYNPRO_TABLE_CONTROL_1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you mark the input an output field check box(screen attributes) and inpput = possible&lt;/P&gt;&lt;P&gt;for all the fields in table control&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To know about &lt;STRONG&gt;LINES&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can read this link:[Table Controls in ABAP Programs|http://help.sap.com/saphelp_nw04/helpdata/EN/9f/dbac9f35c111d1829f0000e829fbfe/content.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Keshav.T on Jan 15, 2010 9:29 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Jan 2010 15:56:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/making-all-fields-editable-in-table-control/m-p/6532721#M1426806</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-01-15T15:56:39Z</dc:date>
    </item>
  </channel>
</rss>

