<?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/3152286#M749636</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nuno Silva&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to get the additional search help for material number or for that matter any other SAP defined field. You will have search help exits defined. for the MATNR standard search help is MAT1(see in SE16). You will find an exit for this search help COM_SE_F4_HELP_EXIT. Steps are given there in Documentation. I think that can help you out in finding the way for new searc help. &lt;/P&gt;&lt;P&gt;to add search help for other fields which does not have any existing search help or search exits attached. You have to look out for user exits or BADIs.If you do not find these then look for OSS notes then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First change will not get wiped out in upgradation but in second scenario if you are using other than exits, BADIs and OSS then changes might get lost. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I clarify your points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;P&gt;NB. Reward points if answers help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Dec 2007 14:46:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-11T14:46:26Z</dc:date>
    <item>
      <title>Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152279#M749629</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 need to add a search help to the collective seach help of the material. Is this possible?&lt;/P&gt;&lt;P&gt;I also need to add a F4 search help to a field in the material. How can i do this?&lt;/P&gt;&lt;P&gt;Are any of this changes going to be overwritten with a future upgrade or suport package?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Nuno Silva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 10:47:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152279#M749629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T10:47: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/3152280#M749630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;1) I need to add a search help to the collective seach help of the material. Is this possible?&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;2) I also need to add a F4 search help to a field in the material. How can i do this?&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the following code to get the F4 help in select options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following code is for the F4 help to the field G/L Account. Replace the G/L account (HKONT) field with your material field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR HKONT-LOW.&lt;/P&gt;&lt;P&gt;SELECT KSTAR KTEXT INTO TABLE IT_HKONT FROM CSKU WHERE SPRAS EQ 'EN'.&lt;/P&gt;&lt;P&gt;SORT IT_HKONT BY KSTAR.&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 = 'HKONT'&lt;/P&gt;&lt;P&gt;VALUE_ORG = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;VALUE_TAB = IT_HKONT&lt;/P&gt;&lt;P&gt;RETURN_TAB = IT_RETURN.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;READ TABLE IT_RETURN INDEX 1.&lt;/P&gt;&lt;P&gt;MOVE IT_RETURN-FIELDVAL TO HKONT-LOW.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR HKONT-HIGH.&lt;/P&gt;&lt;P&gt;SELECT KSTAR KTEXT INTO TABLE IT_HKONT FROM CSKU WHERE SPRAS EQ 'EN'.&lt;/P&gt;&lt;P&gt;SORT IT_HKONT BY KSTAR.&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 = 'HKONT'&lt;/P&gt;&lt;P&gt;VALUE_ORG = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;VALUE_TAB = IT_HKONT&lt;/P&gt;&lt;P&gt;RETURN_TAB = IT_RETURN.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;READ TABLE IT_RETURN INDEX 1.&lt;/P&gt;&lt;P&gt;MOVE IT_RETURN-FIELDVAL TO HKONT-HIGH.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;3) Are any of this changes going to be overwritten with a future upgrade or suport package?&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Search help does not effect any for teh future upgradation or support packages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 10:53:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152280#M749630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T10:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152281#M749631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sravan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your answer.&lt;/P&gt;&lt;P&gt;Where do i place the code you gave me?&lt;/P&gt;&lt;P&gt;And how do i create a new elementary search help for the material?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Nuno Silva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 11:12:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152281#M749631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T11:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152282#M749632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nuno Silva&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code i have given will creat search help dynamically for the Selection Options.&lt;/P&gt;&lt;P&gt;Before the code you need to declare a internal table to pass the same to function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DATA: BEGIN OF IT_MAT OCCURS 0,&lt;/P&gt;&lt;P&gt;MATNR LIKE MARA-MATNR,&lt;/P&gt;&lt;P&gt;BEZEICH LIKE MAKT-MAKTX,&lt;/P&gt;&lt;P&gt;END OF IT_MAT.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code should be given at the event &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR MATNR-LOW.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For creating the Elementary search help you have to try the T.Code SE11. where you can create the Elementary search help and Collective Search help also. Collective Search help is collection of Elementary search helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 11:20:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152282#M749632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T11:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152283#M749633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe i didn't explain myself, but i need to change the search help in MM02 and MM03 transactions. Not in a Z program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Nuno Silva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 11:52:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152283#M749633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T11:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152284#M749634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;goto spro tcode ie sap img ( implementation guide) there goto click of img-&amp;gt;logictics-general -&amp;gt;material master-&amp;gt; define match code object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first  u create search help with the required condition in help view and attached to the searchhelp elementary .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add this elementary search help in spro tcode which i had given above ( click on interfacemethods).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 14:13:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152284#M749634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T14:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152285#M749635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;That could do the trick.&lt;/P&gt;&lt;P&gt;Can I use an append search help? And like i asked before, is this change overwritten in future updates?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Nuno Silva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 14:41:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152285#M749635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T14:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152286#M749636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nuno Silva&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to get the additional search help for material number or for that matter any other SAP defined field. You will have search help exits defined. for the MATNR standard search help is MAT1(see in SE16). You will find an exit for this search help COM_SE_F4_HELP_EXIT. Steps are given there in Documentation. I think that can help you out in finding the way for new searc help. &lt;/P&gt;&lt;P&gt;to add search help for other fields which does not have any existing search help or search exits attached. You have to look out for user exits or BADIs.If you do not find these then look for OSS notes then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First change will not get wiped out in upgradation but in second scenario if you are using other than exits, BADIs and OSS then changes might get lost. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I clarify your points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;P&gt;NB. Reward points if answers help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 14:46:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3152286#M749636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T14:46:26Z</dc:date>
    </item>
  </channel>
</rss>

