<?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 Table control related... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-related/m-p/4491092#M1062934</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;My question is - how can I develop table control having three columns with only one column editable?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Sep 2008 09:58:41 GMT</pubDate>
    <dc:creator>former_member755502</dc:creator>
    <dc:date>2008-09-19T09:58:41Z</dc:date>
    <item>
      <title>Table control related...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-related/m-p/4491092#M1062934</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;My question is - how can I develop table control having three columns with only one column editable?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 09:58:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-related/m-p/4491092#M1062934</guid>
      <dc:creator>former_member755502</dc:creator>
      <dc:date>2008-09-19T09:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: Table control related...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-related/m-p/4491093#M1062935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We can make only one column editable in the table control by using below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    step1: In one of the module in the PBO event &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    step2: Write beloe code :&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;P&gt;            LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;                CASE SCREEN-NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                  WHEN 'IG_ITAB-VBELN'.&lt;/P&gt;&lt;P&gt;                    SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;                    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                  WHEN 'IG_ITAB-ERDAT'.&lt;/P&gt;&lt;P&gt;                    SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;                    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                ENDCASE.&lt;/P&gt;&lt;P&gt;              ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    step3: Where in the above code, the fields "vbeln &amp;amp; erdat" are two columns which we cant edit in the table control... likewise you can make a column  non- editable  .&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sarkar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 10:01:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-related/m-p/4491093#M1062935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T10:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Table control related...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-related/m-p/4491094#M1062936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : cols like line of tc-cols.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at tc-cols into cols.
if cols-screen-name = 'col1'.
screen-input = 0.
endif.
if cols-screen-name = 'col2'.
screen-input = 0.
endif.
modify tc-cols from cols. 
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 10:05:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-related/m-p/4491094#M1062936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T10:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Table control related...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-related/m-p/4491095#M1062937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;write module in PBO as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  FIELD_STATUS_9012  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module FIELD_STATUS_9012 output.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    CASE screen-name.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;The following are the screen field names&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WHEN 'WA_LC_BG_ACCT-BELNR' OR&lt;/P&gt;&lt;P&gt;           'WA_LC_BG_ACCT-WRBTR' OR&lt;/P&gt;&lt;P&gt;           'WA_LC_BG_ACCT-ZFBDT' OR&lt;/P&gt;&lt;P&gt;           'WA_LC_BG_ACCT-PYDATE' OR&lt;/P&gt;&lt;P&gt;           'WA_LC_BG_ACCT-BCHARG' OR&lt;/P&gt;&lt;P&gt;           'WA_LC_BG_ACCT-INTRST'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          screen-input = 0.&lt;/P&gt;&lt;P&gt;          MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;endmodule.                 " FIELD_STATUS_9012  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raju.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 10:05:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-related/m-p/4491095#M1062937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T10:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Table control related...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-related/m-p/4491096#M1062938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Double click on Column of Table control in screen . Beside one Screen will open.  down three radio buttons are there.&lt;/P&gt;&lt;P&gt;Buttons : Dict , Program , Display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on Program , So There u can find out small put field.So there&lt;/P&gt;&lt;P&gt;u can give not possible which columns u dont want to Edit.Which column u want to Edit , related to that give possible in input field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2008 10:06:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-related/m-p/4491096#M1062938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-19T10:06:40Z</dc:date>
    </item>
  </channel>
</rss>

