<?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 Se51 screen layout in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/se51-screen-layout/m-p/5537285#M1264817</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;i have created a screen in se51 and added fields. this is an extension screen for a standard screen of SAP.&lt;/P&gt;&lt;P&gt;when i go through the display transaction the fields on my screen are still editable.&lt;/P&gt;&lt;P&gt;how can i make it non editable if i open thenscreen through display transaction and editable when i come through create or change transaction??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Apr 2009 09:59:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-24T09:59:27Z</dc:date>
    <item>
      <title>Se51 screen layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/se51-screen-layout/m-p/5537285#M1264817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;i have created a screen in se51 and added fields. this is an extension screen for a standard screen of SAP.&lt;/P&gt;&lt;P&gt;when i go through the display transaction the fields on my screen are still editable.&lt;/P&gt;&lt;P&gt;how can i make it non editable if i open thenscreen through display transaction and editable when i come through create or change transaction??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 09:59:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/se51-screen-layout/m-p/5537285#M1264817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T09:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: Se51 screen layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/se51-screen-layout/m-p/5537286#M1264818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Transaction like VA or ME controlled through AKTYP based on AKTYP value you can identify it is a Display or change or Create Transaction. Accordingly you can display your screen fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or else if you use the same screen groups as standard screen fields your problem will be solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use proper subject line for your future questions, else thread will be deleted or Locked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vijay Babu Dudla on Apr 24, 2009 8:36 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 12:36:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/se51-screen-layout/m-p/5537286#M1264818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T12:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Se51 screen layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/se51-screen-layout/m-p/5537287#M1264819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Vijay said, you can try by giving the same screen group of the standard screens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To give screen group: Check in SE51 -&amp;gt; Attributes -&amp;gt; Other attributes -&amp;gt; Screen Group. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;~ Satyasuresh Donepudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 15:10:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/se51-screen-layout/m-p/5537287#M1264819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T15:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: Se51 screen layout</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/se51-screen-layout/m-p/5537288#M1264820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shipa Priya,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PBO.

MODULE status_1010 .

MODULE status_1010 OUTPUT.
  CASE sy-tcode.

    WHEN 'me21'.            "transaction.
     perfrom f_screen_create.
    WHEN 'me22'.
      perfrom f_screen_change.
    WHEN 'me23'.
      perfrom f_screen_dispaly..
  ENDCASE.

ENDMODULE.                 " STATUS_1010  OUTPUT

from f_screen_dispaly.

Loop at sceen.
"write logic that to make the screen field to display
endloop.


endform
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 15:31:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/se51-screen-layout/m-p/5537288#M1264820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T15:31:03Z</dc:date>
    </item>
  </channel>
</rss>

