<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1948130#M390685</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;If Standrad search help availble in the dataelement level, Attach searchhelp to dataelement level (or) use the field which is having corresponing dataelement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it doesn't hold the searchhelp (reusability is less) then call FM ''F4IF_INT_TABLE_VALUE_REQUEST'' and attach search help values in screen logic it self.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If don't find standrad serach help, then create search help in SE11 and attach to the dataelement of field. (As if thininking Reusability of the field) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If helps plz reward points to all possible answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Bhupal Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Mar 2007 06:07:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-02T06:07:52Z</dc:date>
    <item>
      <title>Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1948126#M390681</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;I want to add search help functionality to screen field 2 based on the values i enter for screen field 1.&lt;/P&gt;&lt;P&gt;Please suggest a solution with codes asap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 05:56:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1948126#M390681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T05:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1948127#M390682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;         You just need to assign a search help for the second field which takes the first filed 's data as the import parameter. You need to create a search help with IMPORT parameters corresponding to the first screen field then your search help will take care. Also you need to assign the search help to the structure which you are using to create the screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example see the search help: &amp;lt;b&amp;gt;H_SCARR&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Seshatalpasai Madala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 05:59:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1948127#M390682</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-03-02T05:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1948128#M390683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;chk this from other thread

report ztest .
 
parameters: p_vbeln type vbak-vbeln,
            p_posnr type vbap-posnr.
 
at selection-screen on value-request for p_posnr.
 
 
  data: begin of help_item occurs 0,
          posnr type vbap-posnr,
          matnr type vbap-matnr,
          arktx type vbap-arktx,
        end of help_item.
 
  data: dynfields type table of dynpread with header line.
 
 
  dynfields-fieldname = 'P_VBELN'.
  append dynfields.
 
  call function 'DYNP_VALUES_READ'
       exporting
            dyname               = sy-cprog
            dynumb               = sy-dynnr
            translate_to_upper   = 'X'
       tables
            dynpfields           = dynfields
       exceptions
            invalid_abapworkarea = 1
            invalid_dynprofield  = 2
            invalid_dynproname   = 3
            invalid_dynpronummer = 4
            invalid_request      = 5
            no_fielddescription  = 6
            invalid_parameter    = 7
            undefind_error       = 8
            double_conversion    = 9
            stepl_not_found      = 10
            others               = 11.
 
 
  read table dynfields with key fieldname = 'P_VBELN'.
 
  p_vbeln = dynfields-fieldvalue.
 
 
  call function 'CONVERSION_EXIT_ALPHA_INPUT'
       exporting
            input  = p_vbeln
       importing
            output = p_vbeln.
 
  select posnr matnr arktx into table help_item
                 from vbap
                      where vbeln = p_vbeln.
 
 
 
  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
       exporting
            retfield    = 'POSNR'
            dynprofield = 'P_POSNR'
            dynpprog    = sy-cprog
            dynpnr      = sy-dynnr
            value_org   = 'S'
       tables
            value_tab   = help_item.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 06:00:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1948128#M390683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T06:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1948129#M390684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sesh,&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;To make it more clear, do I need to make a search help via Se11 or is it enough to add that to Function module F4IF_INT_...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 06:02:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1948129#M390684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T06:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1948130#M390685</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;If Standrad search help availble in the dataelement level, Attach searchhelp to dataelement level (or) use the field which is having corresponing dataelement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it doesn't hold the searchhelp (reusability is less) then call FM ''F4IF_INT_TABLE_VALUE_REQUEST'' and attach search help values in screen logic it self.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If don't find standrad serach help, then create search help in SE11 and attach to the dataelement of field. (As if thininking Reusability of the field) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If helps plz reward points to all possible answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Bhupal Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 06:07:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1948130#M390685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T06:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: Search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1948131#M390686</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;   Create a scarch help for the screen field 2, in this scarch help you add a search help exit .Write the logic in the seacch help exit so that it should be based on the selections made on the screen field 1. now  use this search help exit for your seacrh help for screen field 2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This process should work .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;Ranjita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 06:56:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/1948131#M390686</guid>
      <dc:creator>former_member196299</dc:creator>
      <dc:date>2007-03-02T06:56:35Z</dc:date>
    </item>
  </channel>
</rss>

