<?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 Restricted parameter on a report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/restricted-parameter-on-a-report/m-p/1900399#M376027</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abapers..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to restrict a value from any entry in the select screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK bla WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   no_emp     TYPE  pa0001-pernr OBLIGATORY,&lt;/P&gt;&lt;P&gt;   date     type  PA0001-begda DEFAULT SY-DATUM &amp;lt;b&amp;gt;RESTRICTED&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK bla.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Jan 2007 21:38:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-30T21:38:46Z</dc:date>
    <item>
      <title>Restricted parameter on a report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/restricted-parameter-on-a-report/m-p/1900399#M376027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abapers..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to restrict a value from any entry in the select screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK bla WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   no_emp     TYPE  pa0001-pernr OBLIGATORY,&lt;/P&gt;&lt;P&gt;   date     type  PA0001-begda DEFAULT SY-DATUM &amp;lt;b&amp;gt;RESTRICTED&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK bla.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 21:38:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/restricted-parameter-on-a-report/m-p/1900399#M376027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-30T21:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: Restricted parameter on a report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/restricted-parameter-on-a-report/m-p/1900400#M376028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;



selection-screen begin of block bla with frame title text-001.
selection-screen skip.
parameters: no_emp type pa0001-pernr obligatory,
            date type pa0001-begda default sy-datum .
selection-screen end of block bla.


at selection-screen output.

  loop at screen.
    if screen-name = 'DATE'.
      screen-input = '0'.
      modify screen.
    endif.
  endloop.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jan 2007 21:41:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/restricted-parameter-on-a-report/m-p/1900400#M376028</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-01-30T21:41:32Z</dc:date>
    </item>
  </channel>
</rss>

