<?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 on Search Help  for select-option in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384096#M187157</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi catherine,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Just copy paste this program.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  (It will POPULATE the SELECT-OPTION,&lt;/P&gt;&lt;P&gt;   based upon &lt;/P&gt;&lt;P&gt;   MULTIPLE Selection,&lt;/P&gt;&lt;P&gt;   selected by the user,&lt;/P&gt;&lt;P&gt;   in the  help provided thru F4IF_INT_TABLE_VALUE_REQUEST.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Eg. is for BUKRS (company code)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.&lt;/P&gt;&lt;P&gt;REPORT ABC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : T001.&lt;/P&gt;&lt;P&gt;DATA : ITAB LIKE TABLE OF T001 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA : RETURN LIKE TABLE OF DDSHRETVAL WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : BUKRS FOR T001-BUKRS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------------------------" /&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR BUKRS-LOW.&lt;/P&gt;&lt;P&gt;PERFORM MYPOPULATE.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------------------------" /&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR BUKRS-HIGH.&lt;/P&gt;&lt;P&gt;PERFORM MYPOPULATE.&lt;/P&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;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM MYPOPULATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH ITAB.&lt;/P&gt;&lt;P&gt;  SELECT * FROM T001 INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield        = 'BUKRS'&lt;/P&gt;&lt;P&gt;      dynprofield     = 'BUKRS'&lt;/P&gt;&lt;P&gt;      dynpprog        = sy-REPID&lt;/P&gt;&lt;P&gt;      dynpnr          = sy-dynnr&lt;/P&gt;&lt;P&gt;      multiple_choice = 'X'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = ITAB&lt;/P&gt;&lt;P&gt;      return_tab      = return.&lt;/P&gt;&lt;P&gt;  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF RETURN[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;REFRESH BUKRS.&lt;/P&gt;&lt;P&gt;CLEAR BUKRS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT RETURN.&lt;/P&gt;&lt;P&gt;    BUKRS-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;    BUKRS-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;    BUKRS-LOW = RETURN-FIELDVAL.&lt;/P&gt;&lt;P&gt;    BUKRS-HIGH = RETURN-FIELDVAL.&lt;/P&gt;&lt;P&gt;    APPEND BUKRS.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&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;&lt;P&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Jul 2006 05:52:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-07T05:52:08Z</dc:date>
    <item>
      <title>Problem on Search Help  for select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384086#M187147</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;Iam working on a search help for select-option,&lt;/P&gt;&lt;P&gt;is there a way to incorporate select-all or multiple&lt;/P&gt;&lt;P&gt;selection on this?&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, 05 Jul 2006 02:17:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384086#M187147</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-05T02:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on Search Help  for select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384087#M187148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.  You can do any kind of search help on  your select-options field.  Please see the example program here.  Notice that it builds the search help at runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001 .

tables: t001.

data: begin of it001 occurs 0,
      bukrs type t001-bukrs,
      butxt type t001-butxt,
      ort01 type t001-ort01,
      land1 type t001-land1,
      end of it001.

select-options s_bukrs for t001-bukrs.

initialization.

  select bukrs butxt ort01 land1 into table it001 from t001.

  sort it001 ascending by bukrs.
  delete adjacent duplicates from it001 comparing bukrs.

at selection-screen on value-request for s_bukrs-low.

  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
       exporting
            retfield    = 'BUKRS'
            dynprofield = 'S_BUKRS'
            dynpprog    = sy-cprog
            dynpnr      = sy-dynnr
            value_org   = 'S'
       tables
            value_tab   = it001.

start-of-selection.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&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>Wed, 05 Jul 2006 03:21:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384087#M187148</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-05T03:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on Search Help  for select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384088#M187149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the function&lt;/P&gt;&lt;P&gt;F4IF_INT_TABLE_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;Insert the function at "at selection-screen on value-request for" event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must first fill up the table parameters for the function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      RETFIELD               = 'POSNR'&lt;/P&gt;&lt;P&gt;      WINDOW_TITLE           = 'Line Item'&lt;/P&gt;&lt;P&gt;      VALUE_ORG              = 'S'&lt;/P&gt;&lt;P&gt;      MULTIPLE_CHOICE        = C_X           " (for muliple selection)&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      VALUE_TAB              = I_DISPLAY&lt;/P&gt;&lt;P&gt;      FIELD_TAB              = I_FIELDTAB&lt;/P&gt;&lt;P&gt;      RETURN_TAB             = I_RETURNVAL&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      PARAMETER_ERROR        = 1&lt;/P&gt;&lt;P&gt;      NO_VALUES_FOUND        = 2&lt;/P&gt;&lt;P&gt;      OTHERS                 = 3&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2006 03:22:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384088#M187149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-05T03:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on Search Help  for select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384089#M187150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i already add search help with value restrictions using  &lt;/P&gt;&lt;P&gt;fm 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt; for the select-option (both so-high and so-low), my problem is when i click the multiple selection button&lt;/P&gt;&lt;P&gt; there is no property/button  for multiple selection or select-all&lt;/P&gt;&lt;P&gt;unlike those select-options that are referenced to a field with built in search help.&lt;/P&gt;&lt;P&gt;how would I go about this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2006 03:50:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384089#M187150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-05T03:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on Search Help  for select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384090#M187151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you noticed the &amp;lt;b&amp;gt;MULTIPLE_CHOICE = C_X " (for muliple selection)&amp;lt;/b&amp;gt; option KLL is using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2006 04:49:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384090#M187151</guid>
      <dc:creator>former_member186741</dc:creator>
      <dc:date>2006-07-05T04:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on Search Help  for select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384091#M187152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i already marked the Multiple Choice of f4 function module, but what i actually want is to select multiple &lt;/P&gt;&lt;P&gt;values on the multiple selection button (located at the right most part of the select-option). &lt;/P&gt;&lt;P&gt;please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 00:40:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384091#M187152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T00:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on Search Help  for select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384092#M187153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I see what you are saying,  I have managed to get it working half way.  When you do mulitple selection using the icon on the right and F4 help, then select, and hit green check, then don't show in that box, but if you click the execute button to go back to the selection screen, they are then updated in the selection option.  Again, this probably isn't good enough for your requirement, but getting closer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0002.

tables: t001.

data: begin of it001 occurs 0,
      bukrs type t001-bukrs,
      butxt type t001-butxt,
      ort01 type t001-ort01,
      land1 type t001-land1,
      end of it001.

&amp;lt;b&amp;gt;data: return type table of ddshretval with header line.&amp;lt;/b&amp;gt;

select-options s_bukrs for t001-bukrs.

initialization.

  select bukrs butxt ort01 land1 into table it001 from t001.

  sort it001 ascending by bukrs.
  delete adjacent duplicates from it001 comparing bukrs.

at selection-screen on value-request for s_bukrs-low.

  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
       exporting
            retfield        = 'BUKRS'
            dynprofield     = 'S_BUKRS'
            dynpprog        = sy-cprog
            dynpnr          = sy-dynnr
&amp;lt;b&amp;gt;            multiple_choice = 'X'&amp;lt;/b&amp;gt;
            value_org       = 'S'
       tables
            value_tab       = it001
      &amp;lt;b&amp;gt;      return_tab      = return.&amp;lt;/b&amp;gt;


&amp;lt;b&amp;gt;  clear s_bukrs. refresh s_bukrs.
  s_bukrs-sign = 'I'.
  s_bukrs-option = 'EQ'.

  loop at return.
    s_bukrs-low = return-fieldval.
    append s_bukrs.
  endloop.
  clear s_bukrs.&amp;lt;/b&amp;gt;

 


start-of-selection.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&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>Fri, 07 Jul 2006 01:07:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384092#M187153</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-07T01:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on Search Help  for select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384093#M187154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes rich you got it, i was doing the same thing and the&lt;/P&gt;&lt;P&gt;selected values do not show up in the box though the values of select-option are updated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 01:28:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384093#M187154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T01:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on Search Help  for select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384094#M187155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is weird.  I've look a a couple standard programs that use the multiple selection parameter of this function module, the funny thing is, is that in not any of them, is this tied to a selection screen parameter nor a select-option.  Maybe usin this parameter of the function module was not designed for use with a selection screen field.  It looks in these standard programs that it is just be used as a pop up and select kind of thing.&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>Fri, 07 Jul 2006 01:33:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384094#M187155</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-07T01:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on Search Help  for select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384095#M187156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see, thanks Rich. &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 01:49:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384095#M187156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T01:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem on Search Help  for select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384096#M187157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi catherine,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Just copy paste this program.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  (It will POPULATE the SELECT-OPTION,&lt;/P&gt;&lt;P&gt;   based upon &lt;/P&gt;&lt;P&gt;   MULTIPLE Selection,&lt;/P&gt;&lt;P&gt;   selected by the user,&lt;/P&gt;&lt;P&gt;   in the  help provided thru F4IF_INT_TABLE_VALUE_REQUEST.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Eg. is for BUKRS (company code)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.&lt;/P&gt;&lt;P&gt;REPORT ABC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : T001.&lt;/P&gt;&lt;P&gt;DATA : ITAB LIKE TABLE OF T001 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA : RETURN LIKE TABLE OF DDSHRETVAL WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : BUKRS FOR T001-BUKRS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------------------------" /&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR BUKRS-LOW.&lt;/P&gt;&lt;P&gt;PERFORM MYPOPULATE.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------------------------" /&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR BUKRS-HIGH.&lt;/P&gt;&lt;P&gt;PERFORM MYPOPULATE.&lt;/P&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;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM MYPOPULATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH ITAB.&lt;/P&gt;&lt;P&gt;  SELECT * FROM T001 INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      retfield        = 'BUKRS'&lt;/P&gt;&lt;P&gt;      dynprofield     = 'BUKRS'&lt;/P&gt;&lt;P&gt;      dynpprog        = sy-REPID&lt;/P&gt;&lt;P&gt;      dynpnr          = sy-dynnr&lt;/P&gt;&lt;P&gt;      multiple_choice = 'X'&lt;/P&gt;&lt;P&gt;      value_org       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = ITAB&lt;/P&gt;&lt;P&gt;      return_tab      = return.&lt;/P&gt;&lt;P&gt;  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF RETURN[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;REFRESH BUKRS.&lt;/P&gt;&lt;P&gt;CLEAR BUKRS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT RETURN.&lt;/P&gt;&lt;P&gt;    BUKRS-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;    BUKRS-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;    BUKRS-LOW = RETURN-FIELDVAL.&lt;/P&gt;&lt;P&gt;    BUKRS-HIGH = RETURN-FIELDVAL.&lt;/P&gt;&lt;P&gt;    APPEND BUKRS.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&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;&lt;P&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Jul 2006 05:52:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-on-search-help-for-select-option/m-p/1384096#M187157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-07T05:52:08Z</dc:date>
    </item>
  </channel>
</rss>

