<?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: List values refresh in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-values-refresh/m-p/7803901#M1587392</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you need to use  FM  VRM_GET_VALUES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe you need to use first  VRM_REFRESH_VALUES... and then  VRM_GET_VALUES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;ponits begging removed by moderator&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Mar 21, 2011 5:47 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Mar 2011 13:43:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-21T13:43:55Z</dc:date>
    <item>
      <title>List values refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-values-refresh/m-p/7803900#M1587391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Halo experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a simple problem but difficult to solve for report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 3 list boxes say p_list1 p_list2 p_list3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depending on the values of p_list1 the p_list2 (list box domain) and  p_list3 (list boxdomain)values are filled up.I am doing the same using FM VRM_SET_VALUES . This is coming correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the problem is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the user selects a diiferenct value in p_list1 and press enter the screen valuews in p_list2  and p_list3 should be refreshed( along the list box domain values )&lt;/P&gt;&lt;P&gt;.So I am doing like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
perform clear_list2_n_list3_values." Which clears all the list1 and list2  screen values a.
perform set_list2_n_list3_values."ehich sets the list2 and list3 values depending on list1 valee
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This i am writing in at selection screen output event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when variant comes this becomes a problem and you cannot clear this values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More ever when the user presses back  from the report output all the values are getting refereshed ( this should not be ). Is there any way to identify that the user has pressed back from the report output?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kallu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 13:29:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-values-refresh/m-p/7803900#M1587391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-21T13:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: List values refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-values-refresh/m-p/7803901#M1587392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you need to use  FM  VRM_GET_VALUES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe you need to use first  VRM_REFRESH_VALUES... and then  VRM_GET_VALUES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;ponits begging removed by moderator&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Mar 21, 2011 5:47 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 13:43:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-values-refresh/m-p/7803901#M1587392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-21T13:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: List values refresh</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-values-refresh/m-p/7803902#M1587393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kallu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think U have to preform &lt;/P&gt;&lt;P&gt;perform clear_list2_n_list3_values." Which clears all the list1 and list2  screen values a.&lt;/P&gt;&lt;P&gt;perform set_list2_n_list3_values."ehich sets the list2 and list3 values depending on list1 values&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT Selection Screen Event., not at Selection screen output event..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u are using module pool perform it in PAI module.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI: At Selection Screen Output will trigger before the screen is loading.. So the values are not refreshing.. use &lt;STRONG&gt;AT Selection Screen Event&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u are performing it &lt;STRONG&gt;at selection screen output event u need to loop the screen and check the function group and clear and set the values..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reply if u need some more clarifications.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 14:04:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-values-refresh/m-p/7803902#M1587393</guid>
      <dc:creator>Kiran_Valluru</dc:creator>
      <dc:date>2011-03-21T14:04:16Z</dc:date>
    </item>
  </channel>
</rss>

