<?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: Search help - On Code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-on-code/m-p/3275027#M783017</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx all. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i found the solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Jan 2008 17:48:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-14T17:48:53Z</dc:date>
    <item>
      <title>Search help - On Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-on-code/m-p/3275024#M783014</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'm using HELP_VALUES_GET_WITH_TABLE_EXT FM to call the search help on processing value-request event. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Everything is working fine but I need to open a selection criteria before show the data. I look for some parameter but O found nothing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate all kind of help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 12:43:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-on-code/m-p/3275024#M783014</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T12:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - On Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-on-code/m-p/3275025#M783015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Bruno,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a look at this, I am using different function modules however in that case you can restrict the values the search help displays without modifying the search help itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="567956"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 13:22:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-on-code/m-p/3275025#M783015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T13:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - On Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-on-code/m-p/3275026#M783016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get the cursor value :--&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get cursor field f_fld line f_lin offset f_off. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if f_lin &amp;gt;= 1. &lt;/P&gt;&lt;P&gt;f_lin = f_lin + &amp;lt;tablecontrol&amp;gt;-top_line - 1. &lt;/P&gt;&lt;P&gt;endif. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table i_dat into i_tablecontrol index v_linno. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i_tablecontrol is workarea of table i_dat. &lt;/P&gt;&lt;P&gt;Will give you the field name where cursor is positioned right now. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set the cursor on particular line:--&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set cursor field f_fld line f_lin offset f_off. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For popup or help values : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you have to create an internal table which will contain the header of F4 pop-up, based on structure HELP_VALUE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Ex. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of fieldtab occurs 0. &lt;/P&gt;&lt;P&gt;include structure help_value. &lt;/P&gt;&lt;P&gt;data: end of fieldtab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And now as your structure of F4 help is in "fieldtab" and all the respective field values in another internal table(with just one field). &lt;/P&gt;&lt;P&gt;You have populate the values from the cursor position values ie values corresponding to cursor where you have selected. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to call function module to pop-up F4 help as follows &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'HELP_VALUES_GET_WITH_TABLE_EXT' &lt;/P&gt;&lt;P&gt;exporting &lt;/P&gt;&lt;P&gt;show_all_values_at_first_time = 'X' &lt;/P&gt;&lt;P&gt;tables &lt;/P&gt;&lt;P&gt;fields = fieldt "structure of F4 help/heading &lt;/P&gt;&lt;P&gt;select_values = selval_tab "return values &lt;/P&gt;&lt;P&gt;valuetab = values "Values to be displayed on F4 help &lt;/P&gt;&lt;P&gt;exceptions &lt;/P&gt;&lt;P&gt;field_not_in_ddic = 1 &lt;/P&gt;&lt;P&gt;more_then_one_selectfield = 2 &lt;/P&gt;&lt;P&gt;no_selectfield = 3 &lt;/P&gt;&lt;P&gt;others = 4. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the values of selected line from F4 help will be in selval_tab. which is an internal table of structure HELP_VTAB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 13:30:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-on-code/m-p/3275026#M783016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T13:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Search help - On Code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-on-code/m-p/3275027#M783017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx all. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i found the solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 17:48:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-on-code/m-p/3275027#M783017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T17:48:53Z</dc:date>
    </item>
  </channel>
</rss>

