<?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: Odd behaviour with parameter id on selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482905#M1255166</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok - looks like a gui error then.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you confirm your gui version and ABAP stack version?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm on 7100.3.12.3123, build 1046700, patch 12 for SAPGui, and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP_ABA	700	0016	SAPKA70016	Cross-Application Component&lt;/P&gt;&lt;P&gt;SAP_BASIS	700	0016	SAPKB70016	SAP Basis Component&lt;/P&gt;&lt;P&gt;For the app. server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note, you have to follow the exact steps to get the behaviour.  If you don't hit execute it works fine! ( which isn't much use for a report program &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Apr 2009 08:32:47 GMT</pubDate>
    <dc:creator>matt</dc:creator>
    <dc:date>2009-04-14T08:32:47Z</dc:date>
    <item>
      <title>Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482903#M1255164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: p_fpath1 TYPE string LOWER CASE MEMORY ID rofile,
            p_fpath2 TYPE string LOWER CASE.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_fpath1.
  PERFORM get_filepath CHANGING p_fpath1.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_fpath2.
  PERFORM get_filepath CHANGING p_fpath2.


*---------Forms
FORM get_filepath CHANGING x_filepath TYPE string.

  DATA: l_filepath TYPE string.

  cl_gui_frontend_services=&amp;gt;directory_browse( CHANGING selected_folder = l_filepath ).

* If no filepath selected, leave the filepath unchanged
  IF l_filepath IS NOT INITIAL.
    x_filepath = l_filepath.
  ENDIF.

ENDFORM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Run the program, and use F4 to choose a file path for p_fpath1 and another for p_fpath2.&lt;/P&gt;&lt;P&gt;Hit execute&lt;/P&gt;&lt;P&gt;Leave the program.&lt;/P&gt;&lt;P&gt;Run the program again.&lt;/P&gt;&lt;P&gt;Use F4 to choose the filepaths for the two parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For me, it's fine for p_fpath2, but for p_fpath1, I get no directory selector.  In fact, to get it working again, I have to log off and log back on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to know if anyone else gets the same problem, and also if anyone knows how to fix it!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 08:20:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482903#M1255164</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-04-14T08:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482904#M1255165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi matt,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried your piece of code and it works perfectly fine for me .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 08:29:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482904#M1255165</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2009-04-14T08:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482905#M1255166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok - looks like a gui error then.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you confirm your gui version and ABAP stack version?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm on 7100.3.12.3123, build 1046700, patch 12 for SAPGui, and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP_ABA	700	0016	SAPKA70016	Cross-Application Component&lt;/P&gt;&lt;P&gt;SAP_BASIS	700	0016	SAPKB70016	SAP Basis Component&lt;/P&gt;&lt;P&gt;For the app. server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note, you have to follow the exact steps to get the behaviour.  If you don't hit execute it works fine! ( which isn't much use for a report program &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 08:32:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482905#M1255166</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-04-14T08:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482906#M1255167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried it out and it is indeed not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haven't got an idea why this is happening and how to solve it though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And i'm on: &lt;/P&gt;&lt;P&gt;7100.2.8.3083 build 983952 SP level 8&lt;/P&gt;&lt;P&gt;SAP_ABA	700	0014	SAPKA70014&lt;/P&gt;&lt;P&gt;SAP_BASIS	700	0014	SAPKB70014&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 08:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482906#M1255167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T08:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482907#M1255168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Matt,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also feel it's a GUI problem. May be other SDNers will have a better answer to this. Anyways can use the method cl_gui_cfw=&amp;gt;flush after the cl_gui_frontend_services=&amp;gt;directory_browse.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;cl_gui_frontend_services=&amp;gt;directory_browse( CHANGING selected_folder = l_filepath ).
CALL METHOD cl_gui_cfw=&amp;gt;flush.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;SUhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 08:40:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482907#M1255168</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-04-14T08:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482908#M1255169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PARAMETERS: p_fpath1 TYPE string LOWER CASE &lt;STRONG&gt;MEMORY ID rofile&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;            p_fpath2 TYPE string LOWER CASE.&lt;/P&gt;&lt;P&gt;statement memory id rofile is creating this problem &lt;/P&gt;&lt;P&gt;because program saves the last value of variable p_fpath1 into sap memoryand retrives it back in next execution so try clearing this memory.&lt;/P&gt;&lt;P&gt;hope this will help you &lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 08:43:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482908#M1255169</guid>
      <dc:creator>raghavendra_sm2</dc:creator>
      <dc:date>2009-04-14T08:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482909#M1255170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried to replicate the Same scenario.I faced the same issue but when i set a break point and tried Debugging event  &lt;STRONG&gt;AT selection-screen on Value request is not trigerring at all&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;I think its the issue with the Memory Id of the Parameter i just tried to remove the memory Id from the Path1 the F4 help was displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to clear the Memory Id.&lt;/P&gt;&lt;P&gt;You need to clear the session memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gurpreet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Gurpreet Singh on Apr 14, 2009 11:02 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 08:44:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482909#M1255170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T08:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482910#M1255171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hello Matt,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; I also feel it's a GUI problem. May be other SDNers will have a better answer to this. Anyways can use the method cl_gui_cfw=&amp;gt;flush after the cl_gui_frontend_services=&amp;gt;directory_browse.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;   &lt;/P&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;CODE&gt;cl_gui_frontend_services=&amp;gt;directory_browse( CHANGING selected_folder = l_filepath ).
&amp;gt; CALL METHOD cl_gui_cfw=&amp;gt;flush.&lt;/CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Hope this helps.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; BR,&lt;/P&gt;&lt;P&gt;&amp;gt; SUhas&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Great bit of thinking there!  But didn't work...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 13:18:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482910#M1255171</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-04-14T13:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482911#M1255172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; PARAMETERS: p_fpath1 TYPE string LOWER CASE &lt;STRONG&gt;MEMORY ID rofile&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&amp;gt;             p_fpath2 TYPE string LOWER CASE.&lt;/P&gt;&lt;P&gt;&amp;gt; statement memory id rofile is creating this problem &lt;/P&gt;&lt;P&gt;&amp;gt; because program saves the last value of variable p_fpath1 into sap memoryand retrives it back in next execution so try clearing this memory.&lt;/P&gt;&lt;P&gt;&amp;gt; hope this will help you &lt;/P&gt;&lt;P&gt;&amp;gt; regards&lt;/P&gt;&lt;P&gt;&amp;gt; raghu&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;...and  Gurpreet Singh...&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The behaviour I want is for the user to get the same path when they re-run the tranasaction.  So clearing the memory isn't going to help, is it? Think about it... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 13:19:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482911#M1255172</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-04-14T13:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482912#M1255173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Funny thing is: when you enter a SPACE or any other character and then hit F4, it seems to work again (at least in my case).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i don't think you can expect a user to enter a space or other character before hitting F4. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 13:43:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482912#M1255173</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T13:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482913#M1255174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The issue was with the STRING VARIABLE in parameters decelaration.I just changed it to RLGRAP-FILENAME it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try these codes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: p_fpath1 TYPE rlgrap-filename LOWER CASE MEMORY ID rofile,
            p_fpath2 TYPE rlgrap-filename LOWER CASE.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_fpath1.
  PERFORM get_filepath CHANGING p_fpath1.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_fpath2.
  PERFORM get_filepath CHANGING p_fpath2.


START-OF-SELECTION.
  WRITE : p_fpath1,p_fpath2.
*---------Forms
FORM get_filepath CHANGING x_filepath TYPE rlgrap-filename.
*CALL METHOD cl_gui_cfw=&amp;gt;flush.
  DATA: l_filepath TYPE string.
  CLEAR :l_filepath,x_filepath.
  cl_gui_frontend_services=&amp;gt;directory_browse( CHANGING selected_folder = l_filepath ).

* If no filepath selected, leave the filepath unchanged
  IF l_filepath IS NOT INITIAL.
    x_filepath = l_filepath.
  ENDIF.

ENDFORM.                    "get_filepath&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LAST ENTERED VALUE WILL ALSO DISPLAY&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;These codes work.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gurpreet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 13:45:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482913#M1255174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-14T13:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482914#M1255175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I changed it to CHAR255, which should be sufficient.  It seems that parameter ids and strings don't get on very well.  As was point out, with a string, the F4 event wasn't even being processed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway - thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 14:02:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482914#M1255175</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-04-14T14:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482915#M1255176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MEMORY ID is causing the problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 4 &lt;/P&gt;&lt;P&gt;... MEMORY ID pid &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This addition links the input field of the parameter with a SPA/GPA parameter in the SAP Memory. The name of the SPA/GPA parameter must be specified directly and with a maximum of 20 characters &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The input.field is filled - when the selection screen is called - with the current value of the SAP/GPA parameter in the SAP memory, provided the data object para is initial after processing of the event AT SELECTION-SCREEN OUTPUT. Otherwise, the value of para is displayed.&lt;/STRONG&gt; If there is a user action on the selection screen, the content of the input field is assigned to the SPA/GPA parameter in the SAP memory. If no SPA/GPA parameter exists for the specified name, it will be created. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 14:03:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482915#M1255176</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2009-04-14T14:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: Odd behaviour with parameter id on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482916#M1255177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, it isn't.  Read the answers above.  It's having &lt;STRONG&gt;string&lt;/STRONG&gt; parameter that causes it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2009 16:24:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/odd-behaviour-with-parameter-id-on-selection-screen/m-p/5482916#M1255177</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-04-14T16:24:54Z</dc:date>
    </item>
  </channel>
</rss>

