<?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 To make cell within Table Control editable in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-cell-within-table-control-editable/m-p/2128781#M447246</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;I am stuck in table control requirement.&lt;/P&gt;&lt;P&gt;The requirement is as follow plz provide the soln asap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	Colmn1	Colmn2	Colmn3	Colmn4&lt;/P&gt;&lt;P&gt;Row1				&lt;/P&gt;&lt;P&gt;Row2		Input 		&lt;/P&gt;&lt;P&gt;Row3				&lt;/P&gt;&lt;P&gt;Row4				&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to make a table control which is display only,&lt;/P&gt;&lt;P&gt;Except (Row2 , Comn2 ) to be input only&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Apr 2007 09:03:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-06T09:03:37Z</dc:date>
    <item>
      <title>To make cell within Table Control editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-cell-within-table-control-editable/m-p/2128781#M447246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;I am stuck in table control requirement.&lt;/P&gt;&lt;P&gt;The requirement is as follow plz provide the soln asap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	Colmn1	Colmn2	Colmn3	Colmn4&lt;/P&gt;&lt;P&gt;Row1				&lt;/P&gt;&lt;P&gt;Row2		Input 		&lt;/P&gt;&lt;P&gt;Row3				&lt;/P&gt;&lt;P&gt;Row4				&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to make a table control which is display only,&lt;/P&gt;&lt;P&gt;Except (Row2 , Comn2 ) to be input only&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 09:03:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-cell-within-table-control-editable/m-p/2128781#M447246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T09:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: To make cell within Table Control editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-cell-within-table-control-editable/m-p/2128782#M447247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u find similar examples on table controls in tcode bibs. may be you can find one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 10:10:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-cell-within-table-control-editable/m-p/2128782#M447247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T10:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: To make cell within Table Control editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-cell-within-table-control-editable/m-p/2128783#M447248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Prashanth,&lt;/P&gt;&lt;P&gt;  Define your table control with all columns as input disabled in your screen painter.&lt;/P&gt;&lt;P&gt;Then in the PBO Section Do like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at itab with TC....
module modify_tc.
endloop.

in program
module modify_tc.
if sy-tabix = 2.
loop at screen.
if screen-name = 'ITAB-COLUMN2'.  "Name of the Column2
screen-input = 1.
screen-active = 1.
screen-output = 1.
modify screen.
endloop.
endif.
endmodule.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Refer this link for more information:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbab6f35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 10:21:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-cell-within-table-control-editable/m-p/2128783#M447248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T10:21:44Z</dc:date>
    </item>
  </channel>
</rss>

