<?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 Difference between Search Helps and Match Codes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309663#M505691</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Difference between Search Helps and Match Codes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 May 2007 10:42:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-17T10:42:04Z</dc:date>
    <item>
      <title>Difference between Search Helps and Match Codes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309663#M505691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Difference between Search Helps and Match Codes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 10:42:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309663#M505691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T10:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Search Helps and Match Codes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309664#M505692</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; Search help and match code objects are one and the same.&lt;/P&gt;&lt;P&gt; In earlier versions, we call them as match code objects and later versions, we call as search help. They are used to provide F4 help to fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Search helps are of two types. Elementary and collective search helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 10:45:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309664#M505692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T10:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Search Helps and Match Codes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309665#M505693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aravind , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   there is not much difference between search helps and mtach codes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Search help you use for a fields directly for providing input help and you provide the input help for a field using match code in Parameter statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; There is a standard way of providing input values to any screen field in ABAP reporting. This way of providing input values can be defined by creating the search helps in ABAP dictionary and using them in reports .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Search helps: Search helps are used to assign an input help ( F4 help ) to screen fields. You can do this by creating a search help for that screen field. And these search helps has only to be assigned to the corresponding screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 2 types of search helps according to their use are available in SAP.&lt;/P&gt;&lt;P&gt;They are : 1) Elementary search helps ( ESH )&lt;/P&gt;&lt;P&gt;                 2) Collective search helps ( CSH )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Match code object : you define in program like this &lt;/P&gt;&lt;P&gt;PARAMETERS : P_MATNR LIKE MARA-MATNR MATCH CODE object ID. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;some more info :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A search help can be created in ABAP Dictionary ( tcode se11 )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Create a new search help (say myHelp) , choose Elementary search help (simple one), select Definitions tab, enter the table name(say myTable) in "Text Table" text box.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Then enter the column to be used (say myField) for this help in search help parameter, choose Import/Export, give Lpos as 1, and activate. ( You can add more columns from the same table here).&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;In report, code as&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter p1 like myTable-myField matchcode object myHelp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;when you execute this report, p1 will have a f4 help enabled. The help list will have all values from myTable for field myField. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this make you understand .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ranjita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 10:46:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309665#M505693</guid>
      <dc:creator>former_member196299</dc:creator>
      <dc:date>2007-05-17T10:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Search Helps and Match Codes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309666#M505694</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;Both can be  used for Searching purpose .&lt;/P&gt;&lt;P&gt;In older versions we used Matchcode&lt;/P&gt;&lt;P&gt;now in  SAP we use Search helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this thread &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="163076"&gt;&lt;/A&gt; &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="406192"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;Deepak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 10:47:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309666#M505694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T10:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Search Helps and Match Codes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309667#M505695</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;Please check the following threads:&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="163076"&gt;&lt;/A&gt;&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="105904"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sarath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 11:04:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309667#M505695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T11:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Search Helps and Match Codes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309668#M505696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey thanks for giving me the valuable answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 05:59:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309668#M505696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T05:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between Search Helps and Match Codes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309669#M505697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey Aravind ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    you should award points for the motivation of the contributers &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Ranjita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 07:19:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-search-helps-and-match-codes/m-p/2309669#M505697</guid>
      <dc:creator>former_member196299</dc:creator>
      <dc:date>2007-05-31T07:19:25Z</dc:date>
    </item>
  </channel>
</rss>

