<?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: Input enable based on condition in table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-enable-based-on-condition-in-table-control/m-p/5298155#M1221973</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Initially by default make those two columns display only by using the above code (input = 0.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you click the new line button , you can loop at the screen again and make these colums input enabled (input = 1 ) along with the non key fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mathews.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 14 Mar 2009 13:03:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-14T13:03:24Z</dc:date>
    <item>
      <title>Input enable based on condition in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-enable-based-on-condition-in-table-control/m-p/5298152#M1221970</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 hav table control in which i have four fields f1 f2 f3 f4 .f1 and f2 are primary key fields.so according to my requirement i made these two columns input disabled so that the primary key fields shuld not be changed.now the issue whenever i insert an initial line new row is added to table control so that v can add new record but the two fields f1 and f2 columns are input disabled for me..........so i need it to be input enabled whenever i add an initial line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cna anyone plz help me in this issue...............&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 10:37:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-enable-based-on-condition-in-table-control/m-p/5298152#M1221970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-13T10:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Input enable based on condition in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-enable-based-on-condition-in-table-control/m-p/5298153#M1221971</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;If you need to add new records through a table control first you will have to enable to columns. Statically ou have set them as input disabled. Assign same group1 to both the key fields. Now suppose you click on a button say New Entry on the screen and it has fctcode as NEW try something like this&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
case sy-ucomm.
when 'NEW'.
loop at screen.
if screen-group1 = 'ABC'
screen-input = 1.
modify screen.
endif.
endloop.
endcase.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Here we assume that the group1 is assigned the value ABC.&lt;/P&gt;&lt;P&gt;Hope this solves your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 11:50:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-enable-based-on-condition-in-table-control/m-p/5298153#M1221971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-13T11:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Input enable based on condition in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-enable-based-on-condition-in-table-control/m-p/5298154#M1221972</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;Kindly refer the below link:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1260491"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tarun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 12:59:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-enable-based-on-condition-in-table-control/m-p/5298154#M1221972</guid>
      <dc:creator>I355602</dc:creator>
      <dc:date>2009-03-14T12:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Input enable based on condition in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-enable-based-on-condition-in-table-control/m-p/5298155#M1221973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Initially by default make those two columns display only by using the above code (input = 0.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you click the new line button , you can loop at the screen again and make these colums input enabled (input = 1 ) along with the non key fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mathews.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 13:03:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-enable-based-on-condition-in-table-control/m-p/5298155#M1221973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-14T13:03:24Z</dc:date>
    </item>
  </channel>
</rss>

