<?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: Problem with select options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129469#M1189179</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this bit of coding:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES: reguh.

DATA :
v_laufd LIKE f110v-laufd,
v_laufil LIKE f110v-laufi,
v_laufih LIKE f110v-laufi.

SELECT-OPTIONS : s_laufd FOR reguh-laufd,
s_laufi FOR reguh-laufi.

PARAMETERS : s_rzawe TYPE reguh-rzawe.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_laufd-low.
  CALL FUNCTION 'F4_ZAHLLAUF'
    EXPORTING
      f1typ = 'D'
    IMPORTING
      laufd = v_laufd.
*      laufi = v_laufil.

  s_laufd-low = v_laufd.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_laufi-low.
  CALL FUNCTION 'F4_ZAHLLAUF'
    EXPORTING
      f1typ = 'I'
    IMPORTING
*      laufd = v_laufd
      laufi = v_laufil.

  s_laufi-low = v_laufil.
&lt;/CODE&gt;&lt;/PRE&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>Wed, 21 Jan 2009 15:45:02 GMT</pubDate>
    <dc:creator>SuhaSaha</dc:creator>
    <dc:date>2009-01-21T15:45:02Z</dc:date>
    <item>
      <title>Problem with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129462#M1189172</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 this simple requirement. In my program I have 2 select options and 1 parameter.&lt;/P&gt;&lt;P&gt;My requirement on F4 functionality of 1 select options i have to fill other select options and parameters. So, I have coded as following, but the problem is. The values are inside the other select options and parameters but not visible on screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : v_laufd LIKE f110v-laufd,&lt;/P&gt;&lt;P&gt;       v_laufil LIKE f110v-laufi,&lt;/P&gt;&lt;P&gt;       v_laufih LIKE f110v-laufi.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : s_laufd for regyh-laufd,&lt;/P&gt;&lt;P&gt;                        s_laufi for reguh-laufi.&lt;/P&gt;&lt;P&gt;parameters : s_rzawe type reguh-rzawe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value request for s_laufd-low.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4_ZAHLLAUF'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      laufd = v_laufd&lt;/P&gt;&lt;P&gt;      laufi = v_laufil.&lt;/P&gt;&lt;P&gt;  s_laufd-low = v_laufd.&lt;/P&gt;&lt;P&gt;  SELECT SINGLE rzawe FROM reguh INTO s_rzawe WHERE laufd = v_laufd&lt;/P&gt;&lt;P&gt;                                                AND laufi = v_laufil.&lt;/P&gt;&lt;P&gt; s_laufi-low = v_laufil.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The values are populated in s_laufd-low, s_laufi-low &amp;amp; s_rzawe, but when the screen is displayed only values in s_laufd-low is displayed and other 2 its showing blank.&lt;/P&gt;&lt;P&gt;I have tried other events like AT SELECTION-SCREEN &amp;amp; AT SELECTION SCREEN OUTPUT as well, but no use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 15:19:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129462#M1189172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-21T15:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129463#M1189173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4_ZAHLLAUF'&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;laufd = v_laufd&lt;/P&gt;&lt;P&gt;laufi = v_laufil.&lt;/P&gt;&lt;P&gt;s_laufd-low = v_laufd.&lt;/P&gt;&lt;P&gt;SELECT SINGLE rzawe FROM reguh INTO s_rzawe WHERE laufd = v_laufd&lt;/P&gt;&lt;P&gt;AND laufi = v_laufil.&lt;/P&gt;&lt;P&gt;s_laufi-low = v_laufil.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you have to use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
s_laufi-sign = 'I'.
s_laufi-option = 'EQ'.
s_laufi-low =  v_laufil.
APPEND s_laufi.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try &amp;amp; let me know.&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>Wed, 21 Jan 2009 15:24:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129463#M1189173</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-01-21T15:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129464#M1189174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;we need to use this Function Module in the AT SELECTION-SCREEN ON VALUE-REQUEST FOR &amp;lt;field&amp;gt;.&lt;/P&gt;&lt;P&gt;and this it iwll return only one value which &amp;lt;field&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bharani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 15:28:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129464#M1189174</guid>
      <dc:creator>BH2408</dc:creator>
      <dc:date>2009-01-21T15:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129465#M1189175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry i forgot to mention, I have also tried &lt;STRONG&gt;append s_laufi&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;If not s_laufi, should show s_rzawe as this is only a  parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 15:30:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129465#M1189175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-21T15:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129466#M1189176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bharani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then there is no other way to fill the values in the other fields based on the value which i have got in this event.?&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;Edited by: Mr A on Jan 21, 2009 4:31 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 15:31:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129466#M1189176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-21T15:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129467#M1189177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have seen the same in a Z-REPORT which works fine. After the &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'F4_ZAHLLAUF'
. . .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is a &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  
LEAVE TO SCREEN SY-DYNNR.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try it. I hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 15:36:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129467#M1189177</guid>
      <dc:creator>former_member194797</dc:creator>
      <dc:date>2009-01-21T15:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129468#M1189178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Henri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks !!! problem solved. Points awarded for your 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>Wed, 21 Jan 2009 15:43:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129468#M1189178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-21T15:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129469#M1189179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this bit of coding:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES: reguh.

DATA :
v_laufd LIKE f110v-laufd,
v_laufil LIKE f110v-laufi,
v_laufih LIKE f110v-laufi.

SELECT-OPTIONS : s_laufd FOR reguh-laufd,
s_laufi FOR reguh-laufi.

PARAMETERS : s_rzawe TYPE reguh-rzawe.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_laufd-low.
  CALL FUNCTION 'F4_ZAHLLAUF'
    EXPORTING
      f1typ = 'D'
    IMPORTING
      laufd = v_laufd.
*      laufi = v_laufil.

  s_laufd-low = v_laufd.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_laufi-low.
  CALL FUNCTION 'F4_ZAHLLAUF'
    EXPORTING
      f1typ = 'I'
    IMPORTING
*      laufd = v_laufd
      laufi = v_laufil.

  s_laufi-low = v_laufil.
&lt;/CODE&gt;&lt;/PRE&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>Wed, 21 Jan 2009 15:45:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129469#M1189179</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-01-21T15:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129470#M1189180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply. The probelm with this code is s_laufi-low will trigger only when i do F4 on s_laufi. But my requirement is to fill s_laufi when value request on s_laufd is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 15:52:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129470#M1189180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-21T15:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129471#M1189181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is how exactly my code will work. Can you share with me the code which worked for you?&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>Wed, 21 Jan 2009 15:53:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129471#M1189181</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-01-21T15:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129472#M1189182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas.&lt;/P&gt;&lt;P&gt;This is the code which worked for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_laufd-low.&lt;/P&gt;&lt;P&gt;  CLEAR v_laufd.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4_ZAHLLAUF'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      laufd = v_laufd&lt;/P&gt;&lt;P&gt;      laufi = v_laufil.&lt;/P&gt;&lt;P&gt;  s_laufd-low = v_laufd.&lt;/P&gt;&lt;P&gt;  APPEND s_laufd.&lt;/P&gt;&lt;P&gt;  SELECT SINGLE rzawe FROM reguh INTO s_rzawe WHERE laufd = v_laufd&lt;/P&gt;&lt;P&gt;                                                AND laufi = v_laufil.&lt;/P&gt;&lt;P&gt;  s_laufi-low = v_laufil.&lt;/P&gt;&lt;P&gt;  APPEND s_laufi.&lt;/P&gt;&lt;P&gt;  LEAVE TO SCREEN sy-dynnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jan 2009 16:01:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-select-options/m-p/5129472#M1189182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-21T16:01:51Z</dc:date>
    </item>
  </channel>
</rss>

