<?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 Regarding parameter 'SAVE' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-parameter-save/m-p/2568672#M586303</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have selection Screen with Default parameter Like example 'standard'.&lt;/P&gt;&lt;P&gt;I want to save this parameter value from the report before execution .&lt;/P&gt;&lt;P&gt;Is there any function Module to save the parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody help me please.&lt;/P&gt;&lt;P&gt;This is very Urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Swapna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Aug 2007 09:30:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-06T09:30:40Z</dc:date>
    <item>
      <title>Regarding parameter 'SAVE'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-parameter-save/m-p/2568672#M586303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have selection Screen with Default parameter Like example 'standard'.&lt;/P&gt;&lt;P&gt;I want to save this parameter value from the report before execution .&lt;/P&gt;&lt;P&gt;Is there any function Module to save the parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody help me please.&lt;/P&gt;&lt;P&gt;This is very Urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Swapna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2007 09:30:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-parameter-save/m-p/2568672#M586303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-06T09:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding parameter 'SAVE'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-parameter-save/m-p/2568673#M586304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can use event AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sameer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2007 09:33:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-parameter-save/m-p/2568673#M586304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-06T09:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding parameter 'SAVE'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-parameter-save/m-p/2568674#M586305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the start-of-selection.&lt;/P&gt;&lt;P&gt;You can directly mention as below&lt;/P&gt;&lt;P&gt;var = 'DEFAULT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had used the same in my programs.&lt;/P&gt;&lt;P&gt;See below&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;start-of-selection.

  clear var.
  if inac_usr eq 'X'.
    var = 'INACTIVEUSERS'.
    title = 'FMAS Inactive Users'.

  elseif expi_usr eq 'X'.
    var = 'EXPIREDUSERS'.
    title = 'FMAS Expired User Accounts'.
  endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2007 09:33:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-parameter-save/m-p/2568674#M586305</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-08-06T09:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding parameter 'SAVE'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-parameter-save/m-p/2568675#M586306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sameer,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u send me the code how to use it.&lt;/P&gt;&lt;P&gt;Actualy My requirement&lt;/P&gt;&lt;P&gt;I have Parameter : i_varaint like disvariant-variant defualt 'stanadrad'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in selection screen it is displaying with standard and it is displaying with some fields.&lt;/P&gt;&lt;P&gt;but I want to save this value standard value in the report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So that i can see this value whenever i needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Swapna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2007 10:09:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-parameter-save/m-p/2568675#M586306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-06T10:09:12Z</dc:date>
    </item>
  </channel>
</rss>

