<?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: SCREEN INTERNAL TABLE ATTRIBUTES in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745713#M901271</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can change the attributes of a field by using group like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if screen-group1 = 'G1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        screen-active = 1.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;        screen-output = 1.&lt;/P&gt;&lt;P&gt;        screen-invisible = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        modify screen.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;You can fing out the group of field on screen in the attribute window of a field on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if they are not already assigned then we can assign it  but its not compulsary its totally depends on requirement whether to use it or not .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more explanation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                                                         &lt;/P&gt;&lt;P&gt;Specifying three-character identifiers for modification groups 1 to 4    &lt;/P&gt;&lt;P&gt;allows you to group fields together. You can process them all at the     &lt;/P&gt;&lt;P&gt;same time in the program using SCREEN modification statements.                                                                                &lt;/P&gt;&lt;P&gt;If, for example, you want to make all fields that of the modification    &lt;/P&gt;&lt;P&gt;group 2 with the ID 222 invisible, you can define the following code in  &lt;/P&gt;&lt;P&gt;the PBO module:                                                                                &lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.                                                          &lt;/P&gt;&lt;P&gt;  IF SCREEN-GROUP2 = '222'.                                              &lt;/P&gt;&lt;P&gt;    SCREEN-INVISIBLE = '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;If the field has no name, there can be no group assignment.              &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Apr 2008 08:25:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-22T08:25:42Z</dc:date>
    <item>
      <title>SCREEN INTERNAL TABLE ATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745712#M901270</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; In the screen internal table attributes i have seen four groups namely by group1 to 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My doubt is what is the concept behind this??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to find out the screen group for a particular field??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is already assigned or we have to assign it??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Arun Joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 08:16:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745712#M901270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T08:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INTERNAL TABLE ATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745713#M901271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can change the attributes of a field by using group like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if screen-group1 = 'G1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        screen-active = 1.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;        screen-output = 1.&lt;/P&gt;&lt;P&gt;        screen-invisible = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        modify screen.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;You can fing out the group of field on screen in the attribute window of a field on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if they are not already assigned then we can assign it  but its not compulsary its totally depends on requirement whether to use it or not .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more explanation&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                                                         &lt;/P&gt;&lt;P&gt;Specifying three-character identifiers for modification groups 1 to 4    &lt;/P&gt;&lt;P&gt;allows you to group fields together. You can process them all at the     &lt;/P&gt;&lt;P&gt;same time in the program using SCREEN modification statements.                                                                                &lt;/P&gt;&lt;P&gt;If, for example, you want to make all fields that of the modification    &lt;/P&gt;&lt;P&gt;group 2 with the ID 222 invisible, you can define the following code in  &lt;/P&gt;&lt;P&gt;the PBO module:                                                                                &lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.                                                          &lt;/P&gt;&lt;P&gt;  IF SCREEN-GROUP2 = '222'.                                              &lt;/P&gt;&lt;P&gt;    SCREEN-INVISIBLE = '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;If the field has no name, there can be no group assignment.              &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 08:25:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745713#M901271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T08:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INTERNAL TABLE ATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745714#M901272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(1)  what is the concept behind this??&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I will try to give a simple example for the same&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Imagine a field called TEST1 and test2 for which in the screen we have 4 groups&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the requirement is that &lt;/P&gt;&lt;P&gt;(1) when user enters transaction X1 he needs to see the field TEST1 and TEST2&lt;/P&gt;&lt;P&gt;(2) when user enters transaction X1 he needs to see the field TEST1 and dont want to see TEST2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so if tcode =  X1 &lt;/P&gt;&lt;P&gt;we need both TEST1 and TEST2&lt;/P&gt;&lt;P&gt;so in group1 (first of the 4 boxes we write G1 for both TEST1 and TEST2)&lt;/P&gt;&lt;P&gt;we write the code&lt;/P&gt;&lt;P&gt;loop at screen&lt;/P&gt;&lt;P&gt;if screen-group1 = 'G1'&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;else screen-active = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so if tcode =  X1 &lt;/P&gt;&lt;P&gt;we need to see TEST1 and hide TEST2&lt;/P&gt;&lt;P&gt;in the second box of the group we write G2 only for TEST1&lt;/P&gt;&lt;P&gt;we write the code&lt;/P&gt;&lt;P&gt;loop at screen&lt;/P&gt;&lt;P&gt;if screen-group2 = 'G1'&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;else screen-active = 0.&lt;/P&gt;&lt;P&gt;since TEST2 second box is empty the above code will execute the else part and hide field TEST2 but show TEST1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short screen groups help us group a particular set of screen fields based on a particular requirement&lt;/P&gt;&lt;P&gt;in this case just 2 are mentioned , imagine a case with 10 fields,we can easily control thier screen properties through code by grouping them &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(2) How to find out the screen group for a particular field??&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the screen properties of the field in the screen painter and see which all groups are filled&lt;/P&gt;&lt;P&gt;In the screen painter just see the boxes which are filled for "Group"&lt;/P&gt;&lt;P&gt;if the first box is filled then in the ABAP code &lt;/P&gt;&lt;P&gt;check by writing if &lt;STRONG&gt;screen-group1&lt;/STRONG&gt; = 'XX'&lt;/P&gt;&lt;P&gt;if the second box is filled then in the ABAP code &lt;/P&gt;&lt;P&gt;check by writing if &lt;STRONG&gt;screen-group2&lt;/STRONG&gt; = 'XX'&lt;/P&gt;&lt;P&gt;the third box is filled then in the ABAP code &lt;/P&gt;&lt;P&gt;check by writing if &lt;STRONG&gt;screen-group3&lt;/STRONG&gt; = 'XX'&lt;/P&gt;&lt;P&gt;the fourth box is filled then in the ABAP code &lt;/P&gt;&lt;P&gt;check by writing if &lt;STRONG&gt;screen-group4&lt;/STRONG&gt; = 'XX'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this replaces the check  if screen-name = a field and checks which all fields fall under a group and does action on all the fields based on the code written&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(3)it is already assigned or we have to assign it??&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If it is a stndard program then it comes predefined if the group property of the screen is used to control it..to change it an access key maybe required provided there are no user exits for the same&lt;/P&gt;&lt;P&gt;in a custom program we can fill the group properties of a screen element&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls revert if you need more clarifications&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 09:05:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745714#M901272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T09:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INTERNAL TABLE ATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745715#M901273</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;Now the requirement is that &lt;/P&gt;&lt;P&gt;(1) when user enters transaction X1 he needs to see the field TEST1 and TEST2&lt;/P&gt;&lt;P&gt;(2) when user enters transaction X1 he needs to see the field TEST1 and dont want to see TEST2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In both the cases u have mentioned the transaction name as X1 its bit confusing for me?? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please xpalin it more clearly and what will happen it screen-active = 0??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 09:15:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745715#M901273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T09:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INTERNAL TABLE ATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745716#M901274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just change the second half as X2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the requirement is that &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(1)&lt;/STRONG&gt; when user enters transaction &lt;STRONG&gt;X1&lt;/STRONG&gt; he needs to see the field TEST1 and TEST2&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(2)&lt;/STRONG&gt; when user enters transaction &lt;STRONG&gt;X2&lt;/STRONG&gt; he needs to see the field TEST1 and dont want to see TEST2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(1)&lt;/STRONG&gt;so if &lt;STRONG&gt;tcode = X1&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;we need both TEST1 and TEST2&lt;/P&gt;&lt;P&gt;so in group1 (first of the 4 boxes we write G1 for both TEST1 and TEST2)&lt;/P&gt;&lt;P&gt;we write the code&lt;/P&gt;&lt;P&gt;loop at screen&lt;/P&gt;&lt;P&gt;if screen-group1 = 'G1'&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;else screen-active = 0.  *hide the fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(2)&lt;/STRONG&gt;so &lt;STRONG&gt;if tcode = X2&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;we need to see TEST1 and hide TEST2&lt;/P&gt;&lt;P&gt;in the second box of the group we write G2 only for TEST1&lt;/P&gt;&lt;P&gt;we write the code&lt;/P&gt;&lt;P&gt;loop at screen&lt;/P&gt;&lt;P&gt;if screen-group2 = 'G2'&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;else screen-active = 0.&lt;/P&gt;&lt;P&gt;since TEST2 second box is empty the above code will execute the else part and hide field TEST2 but show TEST1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen-active = 0 .&lt;/P&gt;&lt;P&gt;means it will make the screen inactive , it can hide the fields &lt;/P&gt;&lt;P&gt;....also you can use screen-invisible = 1.&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;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 09:30:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745716#M901274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T09:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INTERNAL TABLE ATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745717#M901275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thr purpose of &lt;STRONG&gt;GROUP1, GROUP2, GROUP3, GROUP4&lt;/STRONG&gt; is as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Specifying three-character identifiers for modification groups 1 to 4 allows you to group fields together. You can process them all at the same time in the program using SCREEN modification statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If, for example, you want to make all fields that of the modification group 2 with the ID 222 invisible, you can define the following code in the PBO module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
     LOOP AT SCREEN.
       IF SCREEN-GROUP2 = '222'.
         SCREEN-INVISIBLE = '1'.
         MODIFY SCREEN.
       ENDIF.
     ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the field has no name, there can be no group assignment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also refer to the following link.&lt;/P&gt;&lt;P&gt;[http://help.sap.com/saphelp_nw70/helpdata/EN/9f/dbab6f35c111d1829f0000e829fbfe/frameset.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is helpful. Reward accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Maddineni Bharath.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 09:35:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745717#M901275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T09:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INTERNAL TABLE ATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745718#M901276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;    Thanks for ur replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please  give me example for input,output,invible??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the functionality for input,output,invisible??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Arun Joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 09:55:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745718#M901276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T09:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INTERNAL TABLE ATTRIBUTES</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745719#M901277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can refer the code in standard program demo_dynpro_modify_simple&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen has different properties which can be modified&lt;/P&gt;&lt;P&gt;Go to se11 -&amp;gt; SCREEN -&amp;gt;click display&lt;/P&gt;&lt;P&gt;All these fields are screen properties and most of them can be controlled in coding&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = ZXXXX&lt;/P&gt;&lt;P&gt;if you give screen-input = 1&lt;/P&gt;&lt;P&gt;modify screen &lt;/P&gt;&lt;P&gt;then the screen field will become input only&lt;/P&gt;&lt;P&gt;if you give screen-input = 0&lt;/P&gt;&lt;P&gt;modify screen&lt;/P&gt;&lt;P&gt;screen field will become display only&lt;/P&gt;&lt;P&gt;if you give screen-invisible = 0&lt;/P&gt;&lt;P&gt;screen will be visible&lt;/P&gt;&lt;P&gt;if you give screen-invisible = 1&lt;/P&gt;&lt;P&gt;screen will become invisible&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;For each and every property in the screen table refer&lt;/P&gt;&lt;P&gt;&lt;A href="http://209.85.175.104/search?q=cache:egD5kekLDTQJ:www.sapmaterial.com/files/modifying_screen_fields.pdf" target="test_blank"&gt;http://209.85.175.104/search?q=cache:egD5kekLDTQJ:www.sapmaterial.com/files/modifying_screen_fields.pdf&lt;/A&gt;&lt;EM&gt;SCREEN-active&lt;/EM&gt;screen-output&lt;EM&gt;properties&lt;/EM&gt;in+SAP&amp;amp;hl=en&amp;amp;ct=clnk&amp;amp;cd=8&amp;amp;gl=in&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapmaterial.com/files/modifying_screen_fields.pdf" target="test_blank"&gt;http://www.sapmaterial.com/files/modifying_screen_fields.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 10:05:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-internal-table-attributes/m-p/3745719#M901277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T10:05:33Z</dc:date>
    </item>
  </channel>
</rss>

