<?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 Single Row Table control - disabled in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-row-table-control-disabled/m-p/4321689#M1029816</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Friends&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have requirement as follows . In my table control i got three columns say for example &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SNo     Sname    Marks&lt;/STRONG&gt;  .  first two columns will be filled automatically in the table control . Now I have to enter the values in the third column that is  MARKS &lt;/P&gt;&lt;P&gt;After entering the first value in that field and press enter that &lt;STRONG&gt;particular row alone should be disabled&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Sep 2008 07:03:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-01T07:03:16Z</dc:date>
    <item>
      <title>Single Row Table control - disabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-row-table-control-disabled/m-p/4321689#M1029816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Friends&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have requirement as follows . In my table control i got three columns say for example &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SNo     Sname    Marks&lt;/STRONG&gt;  .  first two columns will be filled automatically in the table control . Now I have to enter the values in the third column that is  MARKS &lt;/P&gt;&lt;P&gt;After entering the first value in that field and press enter that &lt;STRONG&gt;particular row alone should be disabled&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 07:03:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-row-table-control-disabled/m-p/4321689#M1029816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-01T07:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: Single Row Table control - disabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-row-table-control-disabled/m-p/4321690#M1029817</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 like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in screen flow logic between loop and end loop(PBO) define a module and write the below code....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if itab-marks ne  ' '.
      loop at screen.
        screen-input = 0 .
        modify screen.
      endloop.
    endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sathish Reddy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 08:59:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-row-table-control-disabled/m-p/4321690#M1029817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-01T08:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Single Row Table control - disabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-row-table-control-disabled/m-p/4321691#M1029818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try out the following approach. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you display the Table Control you can make the fields SNo and SName disabled. This you can achieve in the PBO Module. In a PBO module you can loop the Table control Screen Table and can disable the fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can have a look at the following demo code as to how you will disable the Table Control columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABCONT_LOOP_AT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, as for the next part you have the marks column enabled. Here you can write a module statement ( PAI Module statement on the FIELD. The Syntax will be FIELD &amp;lt;fieldname&amp;gt; ON REQUEST. Here you can take the Function Code as ENTER and then can do disable the Table Control Current Line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at this code. It will give you some Idea of how to use the current line statement. &lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABCONT_LOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Samantak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 10:53:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-row-table-control-disabled/m-p/4321691#M1029818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-01T10:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: Single Row Table control - disabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-row-table-control-disabled/m-p/4321692#M1029819</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;loop at itab_item.&lt;/P&gt;&lt;P&gt;          IF itab_item-ITEM_CATEG = 'ZFRS' .&lt;/P&gt;&lt;P&gt;          IF zsd_tab-current_line = sy-tabix.&lt;/P&gt;&lt;P&gt;        loop at screen.&lt;/P&gt;&lt;P&gt;             screen-input       = 0.&lt;/P&gt;&lt;P&gt;             modify screen .&lt;/P&gt;&lt;P&gt;        endloop.&lt;/P&gt;&lt;P&gt;       endif.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 09:02:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-row-table-control-disabled/m-p/4321692#M1029819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T09:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Single Row Table control - disabled</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/single-row-table-control-disabled/m-p/4321693#M1029820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jul 2009 05:25:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/single-row-table-control-disabled/m-p/4321693#M1029820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-13T05:25:46Z</dc:date>
    </item>
  </channel>
</rss>

