<?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 Get column Disable in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-column-disable/m-p/7143493#M1513722</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created table control field wa_itmdtls-ebeln with input field posible. when user is entring single po no and he press enter then below wa_itmdtls-ebeln column gets disable. I want User can enter multiple PO number and pressing multiple time enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    READ TABLE tabl_ctrl-cols INTO wa_col INDEX 4.&lt;/P&gt;&lt;P&gt;    wa_col-screen-input = 1.&lt;/P&gt;&lt;P&gt;    MODIFY tabl_ctrl-cols FROM wa_col INDEX 4.&lt;/P&gt;&lt;P&gt;under PROCESS AFTER INPUT,  MODULE user_command_9010. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide appropriate solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Aug 2010 11:01:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-08-11T11:01:56Z</dc:date>
    <item>
      <title>Get column Disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-column-disable/m-p/7143493#M1513722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created table control field wa_itmdtls-ebeln with input field posible. when user is entring single po no and he press enter then below wa_itmdtls-ebeln column gets disable. I want User can enter multiple PO number and pressing multiple time enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    READ TABLE tabl_ctrl-cols INTO wa_col INDEX 4.&lt;/P&gt;&lt;P&gt;    wa_col-screen-input = 1.&lt;/P&gt;&lt;P&gt;    MODIFY tabl_ctrl-cols FROM wa_col INDEX 4.&lt;/P&gt;&lt;P&gt;under PROCESS AFTER INPUT,  MODULE user_command_9010. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide appropriate solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Aug 2010 11:01:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-column-disable/m-p/7143493#M1513722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-11T11:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Get column Disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-column-disable/m-p/7143494#M1513723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;whay r u raeding index 4?&lt;/P&gt;&lt;P&gt;Do u need only 4the records?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Aug 2010 11:15:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-column-disable/m-p/7143494#M1513723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-11T11:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: Get column Disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-column-disable/m-p/7143495#M1513724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YES.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Aug 2010 11:37:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-column-disable/m-p/7143495#M1513724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-11T11:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Get column Disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-column-disable/m-p/7143496#M1513725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try rewriting this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
READ TABLE tabl_ctrl-cols INTO wa_col INDEX 4.
MODIFY tabl_ctrl-cols FROM wa_col INDEX 4.
wa_col-screen-input = 1
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just formatting the field after update. I doubt the formatting is overwritten by the update statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lemme know if it works!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Shiny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Aug 2010 14:16:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-column-disable/m-p/7143496#M1513725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-11T14:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: Get column Disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-column-disable/m-p/7143497#M1513726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi try this way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PROCESS BEFORE OUTPUT.
* Module screen GUI-Screen&amp;amp;Status and Screen Logic
  MODULE status_1020.

* Table control for OUTPUT
  LOOP AT &amp;lt;table name&amp;gt;
       WITH CONTROL &amp;lt;table control&amp;gt;.
    MODULE screen_modify.
  ENDLOOP.

MODULE SCREEN_MODIFY OUTPUT.

* Table control reading values from input screen &amp;amp; displaying on screen
if &amp;lt;tablecontro&amp;gt;-current_line = 4.  
 READ TABLE tabl_ctrl-cols INTO wa_col INDEX 4.
IF sy-subrc = 0.
    LOOP AT SCREEN.
      IF screen-name = 'WA_ZCXREF_CLASSES-ATWRT'.
        screen-input = 0.
      ENDIF.
      MODIFY SCREEN.
    ENDLOOP.
  ENDIF.
endif.
ENDMODULE.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Aug 2010 14:23:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-column-disable/m-p/7143497#M1513726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-11T14:23:34Z</dc:date>
    </item>
  </channel>
</rss>

