<?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: selection screen modification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modification/m-p/4836649#M1131445</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;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM enable_disable_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Means:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on routine enable_disable_fields, you can disable the contents of your selection-screen, using :&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;     if screen-group = 'INS'&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;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According with your choices, you will disable the fields:&lt;/P&gt;&lt;P&gt;              screen-input = 0.&lt;/P&gt;&lt;P&gt;               modify screen.&lt;/P&gt;&lt;P&gt;You can control by screen group (in the example) or by screen name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Moreira&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Nov 2008 10:40:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-28T10:40:14Z</dc:date>
    <item>
      <title>selection screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modification/m-p/4836648#M1131444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi in,&lt;/P&gt;&lt;P&gt;        F.19 transaction  selection screen i want to grey out POSTING tabstrip ie.the user should not be able to use the option.i found that an LDB is being used for the selection screen i alreadycopied the program to a Zversion i want to know where exactly the to be comented pleasesuggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2008 00:57:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modification/m-p/4836648#M1131444</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-28T00:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modification/m-p/4836649#M1131445</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;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM enable_disable_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Means:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on routine enable_disable_fields, you can disable the contents of your selection-screen, using :&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;     if screen-group = 'INS'&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;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According with your choices, you will disable the fields:&lt;/P&gt;&lt;P&gt;              screen-input = 0.&lt;/P&gt;&lt;P&gt;               modify screen.&lt;/P&gt;&lt;P&gt;You can control by screen group (in the example) or by screen name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Moreira&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2008 10:40:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modification/m-p/4836649#M1131445</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-28T10:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modification/m-p/4836650#M1131446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name = 'TABS1020'.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope that helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2008 11:07:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modification/m-p/4836650#M1131446</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2008-11-28T11:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modification/m-p/4836651#M1131447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Prakash, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I undestand that you do not want to let the user to use a specific field on selection screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it alright if you remove that field from the selection screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/Tips/ABAP/SelectionScreen/Modify.htm" target="test_blank"&gt;http://www.saptechnical.com/Tips/ABAP/SelectionScreen/Modify.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here they had provided instructions to modify a screen on selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case if you do not want it then simply select the Screen element and click on Delete. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to Se80, Provide the name of the report and click on Screens and then click on Layout and it will show you the screen elements that they had used. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Simply select the screen element and delete that you do not want on the selection screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First Try this by copying your program into another program if this satisfies then you can do the same in the original program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kittu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kittu on Nov 28, 2008 1:28 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2008 12:28:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modification/m-p/4836651#M1131447</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-28T12:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modification/m-p/4836652#M1131448</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 Z program,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Find for the terms 'PARAMETER' and identify the field values for the tabstrip POSTING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then introduce a initialization event, and then modify the screen parameters by using LOOP AT SCREEN for those parameter entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHeers...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2008 12:43:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modification/m-p/4836652#M1131448</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-28T12:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modification/m-p/4836653#M1131449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the copied Z... program still uses the standard logical database, which means the possibilites are restricted. This means, for example you cannot turn off the whole tabstrip, only the fields on it one-by-one. Fastest solution is only to turn out the checkbox on the top of the tabstrip. This checkbox makes the postings, so if it cannot be turned on, it is irrelevant what values the fields under it get. You have to do the following:&lt;/P&gt;&lt;P&gt;In the FORM modif_screen pls. add the following:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT screen.
CHECK screen-name EQ 'PAR_BI'.
screen-input = '0'.
MODIFY screen.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Nov 2008 12:53:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modification/m-p/4836653#M1131449</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-11-28T12:53:46Z</dc:date>
    </item>
  </channel>
</rss>

