<?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: selection-screen (field from .Include structure) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402730#M194599</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is not advisable to have a search based on text(AFVC-LTXA1).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jun 2006 18:37:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-29T18:37:36Z</dc:date>
    <item>
      <title>selection-screen (field from .Include structure)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402724#M194593</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 a selection screen with several select-options. One of the select-option is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_vornr for afvc-vornr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where 'vornr' is a .Include structure field in the table 'afvc'. Now my question is, in selection screen when I click on the box for this particular select-option I dont see the circle(from where we can select the existing input values) at the end of the box. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is it so and how can get that circle option at the end of the box by sticking to the same table and field(afvc-vornr). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Waiting for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 18:03:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402724#M194593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T18:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen (field from .Include structure)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402725#M194594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;the field do not have nay value range with it.&lt;/P&gt;&lt;P&gt;you can put the F4 help by using&lt;/P&gt;&lt;P&gt;At Selection-Screen on Value-request &amp;lt;select-option&amp;gt;. event.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt; DATA :  rt_values TYPE STANDARD TABLE OF type_values,&lt;/P&gt;&lt;P&gt;          rs_values TYPE type_values,&lt;/P&gt;&lt;P&gt;          rt_fields TYPE STANDARD TABLE OF type_fields,&lt;/P&gt;&lt;P&gt;          rs_fields TYPE type_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR    : rs_values,rs_fields.&lt;/P&gt;&lt;P&gt;  REFRESH  : rt_values,rt_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Creation of selection list&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  rs_fields-tabname     = 'AFVC'.&lt;/P&gt;&lt;P&gt;  rs_fields-fieldname   = 'VORNR&lt;/P&gt;&lt;P&gt;  rs_fields-selectflag  = ' '.       &lt;/P&gt;&lt;P&gt;  APPEND rs_fields TO rt_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECT vornr form AFVC&lt;/P&gt;&lt;P&gt;                 INTO  TABLE t_vornr.&lt;/P&gt;&lt;P&gt;  SORT t_vornr.&lt;/P&gt;&lt;P&gt;  DELETE ADJACENT DUPLICATES FROM t_vornr.&lt;/P&gt;&lt;P&gt;  LOOP AT t_vornr INTO s_vornr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    rs_values =  s_vornr-vornr.&lt;/P&gt;&lt;P&gt;    APPEND rs_values TO rt_values.&lt;/P&gt;&lt;P&gt;    CLEAR rs_values.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;FUNCTION 'HELP_VALUES_GET_WITH_TABLE'                   EXPORTING&lt;/P&gt;&lt;P&gt;      fieldname    = 'AFVC'&lt;/P&gt;&lt;P&gt;      tabname      = 'VORNR&lt;/P&gt;&lt;P&gt;      titel        = 'Counting&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      select_value = &amp;lt;select-opion&amp;gt;&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      fields       = rt_fields&lt;/P&gt;&lt;P&gt;      valuetab     = rt_values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Amit Khare&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 18:08:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402725#M194594</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2006-06-29T18:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen (field from .Include structure)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402726#M194595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are not specific help values for operations.  This are very dynamic in your system.  It can almost be any 4 character value.  This is why you don't see help.  If you wonld like to provide your own, you can do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001 .

data: begin of ivornr occurs 0,
      vornr type afvc-vornr,
      end of  ivornr .

select-options s_vornr for ivornr-vornr.

initialization.

ivornr-vornr = '0010'.  append ivornr.
ivornr-vornr = '0020'.  append ivornr.
ivornr-vornr = '0030'.  append ivornr.
ivornr-vornr = '0040'.  append ivornr.
ivornr-vornr = '0050'.  append ivornr.
ivornr-vornr = '0060'.  append ivornr.

at selection-screen on value-request for s_vornr-low.

  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
       exporting
            retfield    = 'VORNR'
            dynprofield = 'S_VORNR'
            dynpprog    = sy-cprog
            dynpnr      = sy-dynnr
            value_org   = 'S'
       tables
            value_tab   = ivornr.

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>Thu, 29 Jun 2006 18:11:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402726#M194595</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-29T18:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen (field from .Include structure)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402727#M194596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi raju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the event AT SELECTION-SCREEN ON VALUE-REQUEST FOR psel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND USE THE FM 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;CHECK THIS THREAD..&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1291256"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 18:16:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402727#M194596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T18:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen (field from .Include structure)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402728#M194597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for all your replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a small mistake in my post. The field I was taking about is 'afvc-ltxa1'. And I have another select-option for which I want the same functionality. So&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_ltxa1 for afvc-ltxa1.&lt;/P&gt;&lt;P&gt;select-options: s_vaplz for aufk-vaplz.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rich and others, will the code you posted be the same if I go for the above two select-options. If not, please tell me where the changes would be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate if you can post some sample code for these two select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Waiting for your reply. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 18:33:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402728#M194597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T18:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen (field from .Include structure)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402729#M194598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;it will be the same code just you need to change the values in the select statement and the table storing the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 18:35:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402729#M194598</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2006-06-29T18:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen (field from .Include structure)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402730#M194599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is not advisable to have a search based on text(AFVC-LTXA1).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 18:37:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-from-include-structure/m-p/1402730#M194599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T18:37:36Z</dc:date>
    </item>
  </channel>
</rss>

