<?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: Table control Screen modify in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-modify/m-p/7274980#M1530680</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;   Please search in the forum you will find it  and check out this link &lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="9270820"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Sep 2010 11:25:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-09-20T11:25:57Z</dc:date>
    <item>
      <title>Table control Screen modify</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-modify/m-p/7274979#M1530679</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 have created a table control in which there are 4 columns out of which one column(REASON) is Dropdown(listbox) which is an INPUT field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my requirement is that this column should be input or output based on some logic i.e for some cases REASON column will be editable and for some cased it will be non-editable. Can any one help me how to do this.....&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;Hemant.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Sep 2010 10:21:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-modify/m-p/7274979#M1530679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-20T10:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: Table control Screen modify</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-modify/m-p/7274980#M1530680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;   Please search in the forum you will find it  and check out this link &lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="9270820"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Sep 2010 11:25:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-modify/m-p/7274980#M1530680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-20T11:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Table control Screen modify</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-modify/m-p/7274981#M1530681</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;Use loop at screen &lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PBO module &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;such as  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF ( screen-name = 'IT_QTY-QTY1' AND it_qty-qty1 = 0 ) OR ( screen-name = 'IT_QTY-QTY2' AND it_qty-qty2 = 0 )&lt;/P&gt;&lt;P&gt;      OR ( screen-name = 'IT_QTY-QTY3' AND it_qty-qty3 = 0 )  OR ( screen-name = 'IT_QTY-QTY4' AND it_qty-qty4 = 0 )&lt;/P&gt;&lt;P&gt;      OR ( screen-name = 'IT_QTY-QTY5' AND it_qty-qty5 = 0 )  OR  ( screen-name = 'IT_QTY-QTY6' AND it_qty-qty6 = 0 )&lt;/P&gt;&lt;P&gt;      OR ( screen-name = 'IT_QTY-QTY7' AND it_qty-qty7 = 0 ) OR ( screen-name = 'IT_QTY-QTY8' AND it_qty-qty8 = 0 ).&lt;/P&gt;&lt;P&gt;&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;Regards&lt;/P&gt;&lt;P&gt;Deepak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Sep 2010 11:29:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-modify/m-p/7274981#M1530681</guid>
      <dc:creator>deepak_dhamat</dc:creator>
      <dc:date>2010-09-20T11:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: Table control Screen modify</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-modify/m-p/7274982#M1530682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;make use of loop and endloop in the PBO..with control&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT lt_komwbhk_wbgt_list&lt;/P&gt;&lt;P&gt;                INTO ls_komwbhk_wbgt_list&lt;/P&gt;&lt;P&gt;                WITH CONTROL tctrl .&lt;/P&gt;&lt;P&gt;****moving data to display the data on the screen&lt;/P&gt;&lt;P&gt;    MODULE move_data_on_target.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and inside the module..make use of loop at screen and using the screen-name u can disable the input&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE move_data_on_target OUTPUT.&lt;/P&gt;&lt;P&gt;**making the target subscreen in read mode&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    screen-input = 0.&lt;/P&gt;&lt;P&gt;    IF screen-name = 'TAR_SEL'.&lt;/P&gt;&lt;P&gt;      screen-input = 1.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  komwbhk_wbgt_list_display = ls_komwbhk_wbgt_list.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " MOVE_DATA_ON_TARGET  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope it helps..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Sep 2010 11:31:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-modify/m-p/7274982#M1530682</guid>
      <dc:creator>former_member261876</dc:creator>
      <dc:date>2010-09-20T11:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Table control Screen modify</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-modify/m-p/7274983#M1530683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks all for ur inputs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2011 07:52:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-modify/m-p/7274983#M1530683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-08T07:52:44Z</dc:date>
    </item>
  </channel>
</rss>

