<?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 PARAMETER field fixed value. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589192#M265338</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 selection screen I want delivery block p_lifsk as '01' fixed, so that user cannot change the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_LIFSK TYPE LIKP-LIFSK DEFAULT '01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Veni.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Oct 2006 17:13:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-12T17:13:52Z</dc:date>
    <item>
      <title>PARAMETER field fixed value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589192#M265338</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 selection screen I want delivery block p_lifsk as '01' fixed, so that user cannot change the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_LIFSK TYPE LIKP-LIFSK DEFAULT '01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Veni.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 17:13:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589192#M265338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T17:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: PARAMETER field fixed value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589193#M265339</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;PARAMETERS: P_LIFSK TYPE LIKP-LIFSK DEFAULT '01' MODIF ID LIF.&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-GROUP1 = 'LIF'.&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;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 17:15:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589193#M265339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T17:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: PARAMETER field fixed value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589194#M265340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Disable that parameter in initilization event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_LIFSK TYPE LIKP-LIFSK DEFAULT '01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'P_LIFSK'.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 17:19:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589194#M265340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T17:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: PARAMETER field fixed value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589195#M265341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Veni,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the users are ok if they dont see the parameter on the selection screen then u can use this option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS &amp;lt;p&amp;gt; DEFALUT VALUE '01' NO-DISPLAY &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is not an option then you can follow the procedure in the other reply...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 17:21:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589195#M265341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T17:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: PARAMETER field fixed value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589196#M265342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All you need to do is loop the screen and change the attribute in the AT SELECTION-SCREEN OUTPUT event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.


parameters: p_lifsk type likp-lifsk default '01'.

at selection-screen output.

  loop at screen.
    if screen-name = 'P_LIFSK'.
      screen-input = 0.
      modify screen.
    endif.
  endloop.

&lt;/CODE&gt;&lt;/PRE&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>Thu, 12 Oct 2006 17:22:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589196#M265342</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-12T17:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: PARAMETER field fixed value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589197#M265343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Rich.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 17:28:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589197#M265343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T17:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: PARAMETER field fixed value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589198#M265344</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;Why only "Thank you Rich"? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've given you the same solution so: "&amp;lt;u&amp;gt;Thanks guys!&amp;lt;/u&amp;gt;"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 17:34:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589198#M265344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T17:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: PARAMETER field fixed value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589199#M265345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, Max's solution is correct also, he just took a different route.  You can use MOD IDs to label one field or a group of fields.  Doing so will allow you to modify the group of fields instead of checking the NAME of the field for each.  You simply check the name of the GROUP1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So....... Thank You Max!!!  &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&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>Thu, 12 Oct 2006 17:37:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589199#M265345</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-12T17:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: PARAMETER field fixed value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589200#M265346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you All of you. This group is very help full for freshers like me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you Max. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rich's solution was simple, so used that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you All.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Veni.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Oct 2006 17:43:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-field-fixed-value/m-p/1589200#M265346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-12T17:43:07Z</dc:date>
    </item>
  </channel>
</rss>

