<?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 process in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-process/m-p/1399990#M193374</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAP provided a customer Fuzzy search help linked to search help DEBI (check in XD02 customer dropdown) but it needs a third pary software, check oss note 176559.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Jul 2006 12:48:38 GMT</pubDate>
    <dc:creator>sridhar_k1</dc:creator>
    <dc:date>2006-07-13T12:48:38Z</dc:date>
    <item>
      <title>search process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-process/m-p/1399988#M193372</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;I have a requirement wherein i have to enhance the search process.The requirement is that when the user types the acronym for the customer the full name of the customer should appear and vice versa.&lt;/P&gt;&lt;P&gt;also the search process should have a facility where if a word is typed then similar names should appear from which the user chooses one.for example if the user types 'logic' then all the names starting with that word should appear(the general way is &lt;STRONG&gt;logic&lt;/STRONG&gt; and F4).can anyone help me out.&lt;/P&gt;&lt;P&gt;also i have a question if it is possible to implement fuzzy search in SAP.if so please help me out.&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 12:25:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-process/m-p/1399988#M193372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T12:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: search process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-process/m-p/1399989#M193373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Sandeep&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the following Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZTEST_SDN1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : MARD.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_MARD OCCURS 0,&lt;/P&gt;&lt;P&gt;WERKS LIKE MARD-WERKS,&lt;/P&gt;&lt;P&gt;END OF IT_MARD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : T_RETURN TYPE STANDARD TABLE OF DDSHRETVAL WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;parameters : P_WERKS LIKE MARD-WERKS.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_WERKS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT WERKS FROM MARD UP TO 10 ROWS INTO table IT_MARD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;RETFIELD = 'WERKS'&lt;/P&gt;&lt;P&gt;DYNPPROG = SY-REPID&lt;/P&gt;&lt;P&gt;DYNPNR = '1000'&lt;/P&gt;&lt;P&gt;DYNPROFIELD = 'P_WERKS'&lt;/P&gt;&lt;P&gt;VALUE_ORG = 'S'&lt;/P&gt;&lt;P&gt;VALUE = '&lt;STRONG&gt;LOGIC&lt;/STRONG&gt;'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;VALUE_TAB = IT_MARD&lt;/P&gt;&lt;P&gt;RETURN_TAB = T_RETURN&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;PARAMETER_ERROR = 1&lt;/P&gt;&lt;P&gt;NO_VALUES_FOUND = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VALUE = '&lt;STRONG&gt;LOGIC&lt;/STRONG&gt;'&lt;/P&gt;&lt;P&gt;here you will give any search criteria for Value Parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sreeni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 12:32:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-process/m-p/1399989#M193373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T12:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: search process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-process/m-p/1399990#M193374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAP provided a customer Fuzzy search help linked to search help DEBI (check in XD02 customer dropdown) but it needs a third pary software, check oss note 176559.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 12:48:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-process/m-p/1399990#M193374</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-07-13T12:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: search process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-process/m-p/1399991#M193375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ponnadi,&lt;/P&gt;&lt;P&gt;can you please explain me how it exactly works i.e. if i give an acronym will it fetch the full name and vice versa.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 13:43:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-process/m-p/1399991#M193375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T13:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: search process</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-process/m-p/1399992#M193376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai do you run the code what i was given &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just execute that code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the selection screen you will get the '&lt;STRONG&gt;LOGIC&lt;/STRONG&gt;' string where ever find in the parameter from the table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the time being just remove the value parameter you will get 10 values &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then you will add the Value parameter in the F.M then it will retrive accoding to your search criteria&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sreeni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 13:48:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-process/m-p/1399992#M193376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T13:48:01Z</dc:date>
    </item>
  </channel>
</rss>

