<?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 display in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-display/m-p/4587896#M1082001</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refere This demo program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RSDEMO02&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;Anbu B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Sep 2008 13:16:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-22T13:16:02Z</dc:date>
    <item>
      <title>table control display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-display/m-p/4587895#M1082000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;I need your help to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I am working on table control with wizard.  In that i have four fields -  fg flag userid and date.  Of which userid and date will be in display mode always( ie the user cant edit this mode at any time).  I have made  them to be in display mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the fg field should be in display mode when i normally execute the transaction.  But when i try to insert a record it should change to edit mode (ie the user must be able to insert the value) for that particlar record which i am going to insert others should be in display mode only.  The flag field must in edit mode always. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short,  how to change the input mode of my field for a particular record alone &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try out with some logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;/P&gt;&lt;P&gt;Bhuvana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 13:05:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-display/m-p/4587895#M1082000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T13:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: table control display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-display/m-p/4587896#M1082001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refere This demo program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RSDEMO02&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;Anbu B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 13:16:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-display/m-p/4587896#M1082001</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T13:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: table control display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-display/m-p/4587897#M1082002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bhuvaneswari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the pbo of the screen, within the loop.. endloop, insert a module&lt;/P&gt;&lt;P&gt;in that module, check the value if the field required and sy-ucomm if necessary and modify the screen as given below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;process before output.

  loop at   &amp;lt;itab&amp;gt;
       into &amp;lt;wa&amp;gt;
       with control &amp;lt;tc&amp;gt;
       cursor &amp;lt;tc&amp;gt;-current_line.
  module modify_screen.
  endloop.

 module status_0100 .

module modify_screen output.

if sy-ucomm eq 'INS' and &amp;lt;wa&amp;gt;-field1 eq &amp;lt;required value&amp;gt;.

loop at screen.
screen-input = 1.
modify screen.
endloop.

endif.

endmodule.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Indu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 13:19:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-display/m-p/4587897#M1082002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T13:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: table control display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-display/m-p/4587898#M1082003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 13:01:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-display/m-p/4587898#M1082003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T13:01:46Z</dc:date>
    </item>
  </channel>
</rss>

