<?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 exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit/m-p/1506647#M234103</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;Check the SAP help.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21ee52446011d189700000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21ee52446011d189700000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Aug 2006 13:36:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-14T13:36:27Z</dc:date>
    <item>
      <title>search help exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit/m-p/1506646#M234102</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 have a search help and it contains a search help exit. Now someone wants me to add a new field as import parameter and with the value of the parameter I have to search information within the code of the exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don´t know how to transfer the value to the search help exit. Can someone explain ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 13:26:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit/m-p/1506646#M234102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T13:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: search help exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit/m-p/1506647#M234103</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;Check the SAP help.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21ee52446011d189700000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21ee52446011d189700000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 13:36:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit/m-p/1506647#M234103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T13:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: search help exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit/m-p/1506648#M234104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the SE11 add the import parameter. In the search help exit whatever value you are entering it will come in the changing parameter SHLP of the user exit. &lt;/P&gt;&lt;P&gt;Take that value and select data and pass the final data to RECORD_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the sample code of EXIT:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION zspa_es_insp_shelp_exit.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local interface:&lt;/P&gt;&lt;P&gt;*"  TABLES&lt;/P&gt;&lt;P&gt;*"      SHLP_TAB TYPE  SHLP_DESCR_TAB_T&lt;/P&gt;&lt;P&gt;*"      RECORD_TAB STRUCTURE  SEAHLPRES&lt;/P&gt;&lt;P&gt;*"  CHANGING&lt;/P&gt;&lt;P&gt;*"     VALUE(SHLP) TYPE  SHLP_DESCR_T&lt;/P&gt;&lt;P&gt;*"     VALUE(CALLCONTROL) LIKE  DDSHF4CTRL STRUCTURE  DDSHF4CTRL&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF callcontrol-step = 'SELECT'.&lt;/P&gt;&lt;P&gt;    CLEAR: i_sel, wa_sel, ws_date_from, ws_date_to, ws_year,&lt;/P&gt;&lt;P&gt;           r_inspdt, i_inst, i_inst_name, i_final, wa_inst,&lt;/P&gt;&lt;P&gt;           wa_inst_name, wa_final.&lt;/P&gt;&lt;P&gt;    REFRESH: i_sel, i_inst, i_inst_name, i_final, r_inspdt.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF callcontrol-step = 'DISP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    i_sel[] = shlp-selopt[].&lt;/P&gt;&lt;P&gt;    READ TABLE i_sel INTO wa_sel WITH KEY shlpfield = 'DATE_FROM'.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      ws_date_from = wa_sel-low.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    READ TABLE i_sel INTO wa_sel WITH KEY shlpfield = 'DATE_TO'.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      ws_date_to = wa_sel-low.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    READ TABLE i_sel INTO wa_sel WITH KEY shlpfield = 'YEAR'.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      ws_year = wa_sel-low.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF NOT ws_date_from IS INITIAL AND&lt;/P&gt;&lt;P&gt;       NOT ws_year      IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      PERFORM go_back_years USING     ws_date_from&lt;/P&gt;&lt;P&gt;                            CHANGING  ws_date_from.&lt;/P&gt;&lt;P&gt;      IF NOT ws_date_to IS INITIAL.&lt;/P&gt;&lt;P&gt;        PERFORM go_back_years USING     ws_date_to&lt;/P&gt;&lt;P&gt;                              CHANGING  ws_date_to.&lt;/P&gt;&lt;P&gt;        r_inspdt-sign   = c_i.&lt;/P&gt;&lt;P&gt;        r_inspdt-option = c_bt.&lt;/P&gt;&lt;P&gt;        r_inspdt-low    = ws_date_from.&lt;/P&gt;&lt;P&gt;        r_inspdt-high   = ws_date_to.&lt;/P&gt;&lt;P&gt;        APPEND r_inspdt.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        r_inspdt-sign   = c_i.&lt;/P&gt;&lt;P&gt;        r_inspdt-option = c_eq.&lt;/P&gt;&lt;P&gt;        r_inspdt-low    = ws_date_from.&lt;/P&gt;&lt;P&gt;        APPEND r_inspdt.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SELECT a&lt;SUB&gt;anlage a&lt;/SUB&gt;sparte a&lt;SUB&gt;vstelle b&lt;/SUB&gt;zzinspdt&lt;/P&gt;&lt;P&gt;             INTO TABLE i_inst&lt;/P&gt;&lt;P&gt;             FROM eanl AS a INNER JOIN zeanl AS b&lt;/P&gt;&lt;P&gt;             ON a&lt;SUB&gt;anlage EQ b&lt;/SUB&gt;anlage&lt;/P&gt;&lt;P&gt;             WHERE b~zzinspdt IN r_inspdt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;        SELECT vstelle str_erg2 INTO TABLE i_inst_name&lt;/P&gt;&lt;P&gt;                FROM evbs&lt;/P&gt;&lt;P&gt;                FOR ALL ENTRIES IN i_inst&lt;/P&gt;&lt;P&gt;                WHERE vstelle = i_inst-vstelle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        LOOP AT i_inst INTO wa_inst.&lt;/P&gt;&lt;P&gt;          wa_final-date_from = ws_date_from.&lt;/P&gt;&lt;P&gt;          wa_final-date_to   = ws_date_to.&lt;/P&gt;&lt;P&gt;          wa_final-year      = ws_year.&lt;/P&gt;&lt;P&gt;          wa_final-anlage    = wa_inst-anlage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          READ TABLE i_inst_name INTO wa_inst_name WITH KEY&lt;/P&gt;&lt;P&gt;                                 vstelle = wa_inst-vstelle.&lt;/P&gt;&lt;P&gt;          IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;            wa_final-str_erg2  = wa_inst_name-str_erg2.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          wa_final-last_insp_date = wa_inst-zzinspdt.&lt;/P&gt;&lt;P&gt;          PERFORM inspdt_plus_years USING     wa_inst-zzinspdt&lt;/P&gt;&lt;P&gt;                                    CHANGING  wa_final-next_inst_date.&lt;/P&gt;&lt;P&gt;          APPEND wa_final TO i_final.&lt;/P&gt;&lt;P&gt;          CLEAR: wa_final, wa_inst, wa_inst_name.&lt;/P&gt;&lt;P&gt;        ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        LOOP AT i_final INTO wa_final.&lt;/P&gt;&lt;P&gt;          record_tab-string = wa_final.&lt;/P&gt;&lt;P&gt;          APPEND record_tab.&lt;/P&gt;&lt;P&gt;          CLEAR wa_final.&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;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4UT_OPTIMIZE_COLWIDTH'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      shlp_tab    = shlp_tab&lt;/P&gt;&lt;P&gt;      record_tab  = record_tab&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      shlp        = shlp&lt;/P&gt;&lt;P&gt;      callcontrol = callcontrol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 13:41:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit/m-p/1506648#M234104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T13:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: search help exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit/m-p/1506649#M234105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hurra !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have overseen the table SHLP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 13:46:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit/m-p/1506649#M234105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T13:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: search help exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit/m-p/1506650#M234106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello pls can somebody post me the implementattion of &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form  &lt;STRONG&gt;go_back_years&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 08:40:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-exit/m-p/1506650#M234106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T08:40:57Z</dc:date>
    </item>
  </channel>
</rss>

