<?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 field in Table Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963591#M395916</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jesus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you can, in PBO loop over the SCREEN table and switch the relevant field from in- to 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;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Feb 2007 08:59:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-21T08:59:16Z</dc:date>
    <item>
      <title>input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963590#M395915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;i have a table control, i want to toggle one of the row in a particular columns in my table control from input to output and vice versa. is it possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 08:57:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963590#M395915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T08:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963591#M395916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jesus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you can, in PBO loop over the SCREEN table and switch the relevant field from in- to 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;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 08:59:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963591#M395916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T08:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963592#M395917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer this link:&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>Wed, 21 Feb 2007 09:00:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963592#M395917</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T09:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963593#M395918</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;Ye it is!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U have to change the attribute INPUT into loop of  table control of PBO and drive the process by a pushbutton (in the user-commad of PAI)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS PBO

  LOOP AT
     MODULE CHANGE_SCREEN.
  ENDLOOP.

PROCESS PAI.
  
  MODULE USER_COMMAND.


  MODULE CHANGE_SCREEN.
     LOOP AT SCREEN.
         IF SCREEN-NAME = &amp;lt;Colunm name&amp;gt;.
            SCREEN-INPUT = _INPUT.
            MODIFY SCREEN.
         ENDIF.
     ENDLOOP.
  ENDMODULE.

  MODULE USER_COMMAND.
   
      CASE OK_CODE.
          WHEN 'MODI'. _INPUT = 1.
          WHEN 'DISP'.  _INPUT = 0.
      ENDCASE.
  ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 09:03:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963593#M395918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T09:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963594#M395919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;i've done that already but nothing happened. maybe because i am trying to alter a Table Control and not one of the screen elements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 09:03:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963594#M395919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T09:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963595#M395920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you show your coding?&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>Wed, 21 Feb 2007 09:04:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963595#M395920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T09:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963596#M395921</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;See my answer, because u don't need to alter the Table Control, but only the INPUT attribute of the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U should change the attribute of table control only if you need to hide a colunm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 09:06:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963596#M395921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T09:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963597#M395922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi,&lt;/P&gt;&lt;P&gt;here's my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONTROLS tc200 TYPE TABLEVIEW USING SCREEN 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: cols LIKE LINE OF tc200-cols,&lt;/P&gt;&lt;P&gt;      v_input TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'F_EDIT'.&lt;/P&gt;&lt;P&gt;      IF v_input EQ 0.&lt;/P&gt;&lt;P&gt;        v_input = 1.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        v_input = 0.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      LOOP AT tc200-cols INTO cols.&lt;/P&gt;&lt;P&gt;        IF cols-screen-name EQ 'IT_TC200-MENGE'.&lt;/P&gt;&lt;P&gt;          cols-screen-input = v_input.&lt;/P&gt;&lt;P&gt;          MODIFY tc200-cols FROM cols INDEX sy-tabix.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this one works, but all of the rows on the column 'IT_TC200-MENGE' is changed&lt;/P&gt;&lt;P&gt;from output to input. what i want is to change just one row or whatever the user selected in my Table Control.&lt;/P&gt;&lt;P&gt;Thanks Ravi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 09:08:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963597#M395922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T09:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963598#M395923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;i've tried it but it doesnt work.&lt;/P&gt;&lt;P&gt;thanks anyway. &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 09:27:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963598#M395923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T09:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963599#M395924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jesus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See my answer, there's a possible solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just as I said you don't need to change the table control attribute, but the field attribute just as I explained before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS PBO
LOOP AT

  MODULE CHANGE_SCREEN.

ENDLOOP.

  MODULE CHANGE_SCREEN.
* If it needs to change only the selected rows
     IF ITAB-MARK = 'X'.
       LOOP AT SCREEN.
           SCREEN-INPUT = _INPUT.
           MODIFY SCREEN.
       ENDLOOP.
     ENDIF.
  ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you change the attributes of tc you'll change them for all rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 09:28:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963599#M395924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T09:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963600#M395925</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;Give me your code...because it's impossible, I've used that trick many many times and it always worked fine:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS PBO
 
  LOOP AT
     MODULE CHANGE_SCREEN.
  ENDLOOP.
 
PROCESS PAI.
  LOOP AT

  ENDLOOP
  
  MODULE USER_COMMAND.
 
 
  MODULE CHANGE_SCREEN.
     CHECK ITAB-MARK = 'X'.
     LOOP AT SCREEN.
         IF SCREEN-NAME = 'IT_TC200-MENGE'.
            SCREEN-INPUT = _INPUT.
            MODIFY SCREEN.
         ENDIF.
     ENDLOOP.
  ENDMODULE.
 
  MODULE USER_COMMAND.   
      CASE OK_CODE.
          WHEN 'F_EDIT'.
           IF _INPUT = 1. 
             _INPUT = 0.
           ELSE
             _INPUT = 1.
           ENDIF.
      ENDCASE.
  ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 09:31:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963600#M395925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T09:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963601#M395926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Really?&lt;/P&gt;&lt;P&gt;wow that's estranged, anyway here's my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE init_screen_200 OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name EQ 'IT_TC200-MENGE'.&lt;/P&gt;&lt;P&gt;      screen-input = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where 'IT_TC200-MENGE' is the field in my TC that i want to change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 09:36:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963601#M395926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T09:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963602#M395927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ooops,&lt;/P&gt;&lt;P&gt;i mean strange.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 09:37:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963602#M395927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T09:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963603#M395928</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;In this way you're always setting as editable the colunm IT_TC200-MENGE for every row, because you're only transfering 1 to SCREEN-INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first thing you should do is to check the INPUT attribute by screen painter: it doesn't has to be ONLY OUTPUT: it can't change this value at run time, set it as INPUT/OUTPUT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you can use a module like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE CHANGE_SCREEN.&lt;/P&gt;&lt;P&gt; LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;   IF SCREEN-NAME = 'IT_TC200-MENGE'.&lt;/P&gt;&lt;P&gt;     SCREEN-INPUT = _INPUT.&lt;/P&gt;&lt;P&gt;     MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The variable _INPUT is setted in the USER-COMMAD:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND.&lt;/P&gt;&lt;P&gt;  CASE OK_CODE.&lt;/P&gt;&lt;P&gt;   WHEN 'F_EDIT'. &lt;/P&gt;&lt;P&gt;      IF _INPUT = 1. &lt;/P&gt;&lt;P&gt;        _INPUT = 0. &lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        _INPUT = 1. &lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need to change only a certain row, that depends on how you manange the SELECTION, if you have a MARK colunm:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE CHANGE_SCREEN.&lt;/P&gt;&lt;P&gt; CHECK IT_TC200-MARK = 'X'.&lt;/P&gt;&lt;P&gt; LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;   IF SCREEN-NAME = 'IT_TC200-MENGE'.&lt;/P&gt;&lt;P&gt;     SCREEN-INPUT = _INPUT.&lt;/P&gt;&lt;P&gt;     MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else you can use a module to get the line with the cursor:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS PAI.&lt;/P&gt;&lt;P&gt;  LOOP&lt;/P&gt;&lt;P&gt;    MODULE GET_CURSOR.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE GET_CURSOR.&lt;/P&gt;&lt;P&gt; GET CURSOR LINE VN_LINE&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE CHANGE_SCREEN.&lt;/P&gt;&lt;P&gt; CHECK SY-STEPL = VN_LINE.&lt;/P&gt;&lt;P&gt; LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;   IF SCREEN-NAME = 'IT_TC200-MENGE'.&lt;/P&gt;&lt;P&gt;     SCREEN-INPUT = _INPUT.&lt;/P&gt;&lt;P&gt;     MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDMODULE&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 09:41:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963603#M395928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T09:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: input field in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963604#M395929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;got it max,&lt;/P&gt;&lt;P&gt; i just missed this one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT&lt;/P&gt;&lt;P&gt;     MODULE CHANGE_SCREEN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot max, it is really a big help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 09:46:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-field-in-table-control/m-p/1963604#M395929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-21T09:46:11Z</dc:date>
    </item>
  </channel>
</rss>

