<?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: To make empty rows inactive after saving in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-empty-rows-inactive-after-saving/m-p/1340815#M172464</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suchitra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCREEN is a table that holds all the screen elements, so you will have to loop at it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-ucomm eq 'SAVE'&lt;/P&gt;&lt;P&gt;describe table itab lines lin.&lt;/P&gt;&lt;P&gt;if sy-stepl ge lin.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'CONTROL-FIELDNAME'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ENDLOOP &amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 27 May 2006 23:13:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-27T23:13:56Z</dc:date>
    <item>
      <title>To make empty rows inactive after saving</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-empty-rows-inactive-after-saving/m-p/1340813#M172462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to disable the empty rows in table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written this code in PBO in &lt;/P&gt;&lt;P&gt;loop.&lt;/P&gt;&lt;P&gt;Module display.&lt;/P&gt;&lt;P&gt;enloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-ucomm eq 'SAVE'&lt;/P&gt;&lt;P&gt;describe table itab lines lin.&lt;/P&gt;&lt;P&gt;if sy-stepl ge lin.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it doesn't work for me .The if condition satisfied but in the o/p i see empty rows active and allowing me to give input.&lt;/P&gt;&lt;P&gt;Please let me know if i am missing something&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thaanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 May 2006 18:26:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-empty-rows-inactive-after-saving/m-p/1340813#M172462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-27T18:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: To make empty rows inactive after saving</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-empty-rows-inactive-after-saving/m-p/1340814#M172463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suchitra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-ucomm eq 'SAVE'&lt;/P&gt;&lt;P&gt;describe table itab lines lin.&lt;/P&gt;&lt;P&gt;if sy-stepl ge lin.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SCREEN-OUTPUT = 1.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-ucomm eq 'SAVE'&lt;/P&gt;&lt;P&gt;describe table itab lines lin.&lt;/P&gt;&lt;P&gt;if sy-stepl ge lin.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SCREEN-active = 0.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vicky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 May 2006 19:00:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-empty-rows-inactive-after-saving/m-p/1340814#M172463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-27T19:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: To make empty rows inactive after saving</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-empty-rows-inactive-after-saving/m-p/1340815#M172464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suchitra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCREEN is a table that holds all the screen elements, so you will have to loop at it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-ucomm eq 'SAVE'&lt;/P&gt;&lt;P&gt;describe table itab lines lin.&lt;/P&gt;&lt;P&gt;if sy-stepl ge lin.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'CONTROL-FIELDNAME'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ENDLOOP &amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 May 2006 23:13:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-empty-rows-inactive-after-saving/m-p/1340815#M172464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-27T23:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: To make empty rows inactive after saving</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-empty-rows-inactive-after-saving/m-p/1340816#M172465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your advice and effort.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 May 2006 00:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-make-empty-rows-inactive-after-saving/m-p/1340816#M172465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-30T00:17:44Z</dc:date>
    </item>
  </channel>
</rss>

