<?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 - Problem after transporting changes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem-after-transporting-changes/m-p/1560068#M253364</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Every Import Statement should have an export statement. I hope you have transported the object/report/program which has that EXPORT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would say, that the only problem `The program which has the Export statement is not transported to QA`. Once you transport it, the problem would be solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Sep 2006 01:16:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-13T01:16:00Z</dc:date>
    <item>
      <title>Search Help - Problem after transporting changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem-after-transporting-changes/m-p/1560067#M253363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I modified an elementary search setting the export flag&lt;/P&gt;&lt;P&gt;on 3 parameters in addition to the 1 export parameter&lt;/P&gt;&lt;P&gt;previously set.  There are a total of 7 parameters.  My intent is to map these 3 additional fields to the screen.&lt;/P&gt;&lt;P&gt;I call function module 'F4IF_FIELD_VALUE_REQUEST' passing a callback form F4_WR_CALLBACK.  After the call to 'F4IF_FIELD_VALUE_REQUEST' I read the return table lt_return and then update the 3 screen fields using  function 'DYNP_VALUES_UPDATE'.  It works perfectly in my&lt;/P&gt;&lt;P&gt;dev system. After transporting to QA it no longer works. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In going through debug, I can see that in my QA environment when executing the following statement:    IMPORT shlp callcontrol-attachkind timestamp timerelobj_tab    &lt;/P&gt;&lt;P&gt;FROM SHARED BUFFER ddshoffld(if) ID sh_buf_id.     &lt;/P&gt;&lt;P&gt;the shlp-interface table does not include the 3 new parameters  added to the search help whereas it does in dev.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;The code follows:&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;call function 'F4IF_FIELD_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            tabname           = 'ZIX_SCG_INTORD'&lt;/P&gt;&lt;P&gt;            fieldname         = 'AUFNR'&lt;/P&gt;&lt;P&gt;            dynprofield       = 'GS_ES_ATTRS-WORK_REQ'&lt;/P&gt;&lt;P&gt;            callback_program  = 'SAPLZES_SCREENS'&lt;/P&gt;&lt;P&gt;            callback_form     = 'F4_WR_CALLBACK'&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            return_tab        = lt_return&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            field_not_found   = 1&lt;/P&gt;&lt;P&gt;            no_help_for_field = 2&lt;/P&gt;&lt;P&gt;            inconsistent_help = 3&lt;/P&gt;&lt;P&gt;            no_values_found   = 4&lt;/P&gt;&lt;P&gt;            others            = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form f4_wr_callback  tables   record_tab  structure seahlpres&lt;/P&gt;&lt;P&gt;                     changing shlp        type shlp_descr_t&lt;/P&gt;&lt;P&gt;                              callcontrol like ddshf4ctrl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: interface like line of shlp-interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  interface-valtabname = 'GS_ES_ATTRS'.&lt;/P&gt;&lt;P&gt;  interface-valfield = 'WORD'.&lt;/P&gt;&lt;P&gt;  modify shlp-interface from interface&lt;/P&gt;&lt;P&gt;  transporting valtabname valfield&lt;/P&gt;&lt;P&gt;  where shlpfield = 'WORD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  interface-valtabname = 'GS_ES_ATTRS'.&lt;/P&gt;&lt;P&gt;  interface-valfield = 'WORK_REQ'.&lt;/P&gt;&lt;P&gt;  modify shlp-interface from interface&lt;/P&gt;&lt;P&gt;  transporting valtabname valfield&lt;/P&gt;&lt;P&gt;  where shlpfield = 'WORK_REQ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  interface-valtabname = 'GS_ES_ATTRS'.&lt;/P&gt;&lt;P&gt;  interface-valfield = 'PROJ'.&lt;/P&gt;&lt;P&gt;  modify shlp-interface from interface&lt;/P&gt;&lt;P&gt;  transporting valtabname valfield&lt;/P&gt;&lt;P&gt;  where shlpfield = 'PROJ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 00:24:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem-after-transporting-changes/m-p/1560067#M253363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-13T00:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help - Problem after transporting changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem-after-transporting-changes/m-p/1560068#M253364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Every Import Statement should have an export statement. I hope you have transported the object/report/program which has that EXPORT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would say, that the only problem `The program which has the Export statement is not transported to QA`. Once you transport it, the problem would be solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 01:16:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem-after-transporting-changes/m-p/1560068#M253364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-13T01:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help - Problem after transporting changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem-after-transporting-changes/m-p/1560069#M253365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Bob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would recommend to make a simple version comparison of the search help between DEV and PROD. If you see any difference there then transport your search help again to PROD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;   Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 06:57:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem-after-transporting-changes/m-p/1560069#M253365</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2006-09-13T06:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help - Problem after transporting changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem-after-transporting-changes/m-p/1560070#M253366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Prashant.  Actually the Export is done in one of the standard SAP Search Help function modules DD_SHLP_GET_HELPMETHOD which is invoked when calling&lt;/P&gt;&lt;P&gt;F4IF_FIELD_VALUE_REQUEST.  It seems to me that it is not retrieving the new definition of the interface from the dictionary.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 16:40:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem-after-transporting-changes/m-p/1560070#M253366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-13T16:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help - Problem after transporting changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem-after-transporting-changes/m-p/1560071#M253367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Uwe.  I already did the compare and it checks out fine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some additional information: &lt;/P&gt;&lt;P&gt;If I run FM DD_SHLP_GET_HELPMETHOD in my Dev and QA systems the changing parameter SHLP-interface returns the 4 paramters in QA and correctly returns the 7 in my Dev system.  The SHLP is updated in form SHARED_BUFFER_IMP_INTERFACE using the Import statement I included in my first post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Sep 2006 17:00:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-problem-after-transporting-changes/m-p/1560071#M253367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-13T17:00:29Z</dc:date>
    </item>
  </channel>
</rss>

