<?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: Regarding Search Help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008227#M957554</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry... My question is not on the select query. Rather my question is that how do I incorporate the select query and come up with the search screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Koushik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Jun 2008 06:12:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-20T06:12:28Z</dc:date>
    <item>
      <title>Regarding Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008223#M957550</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 am able to create an elimentary search help using a view which actually joins two table s like EMP and DEPT. In this search help all the DEPT_NO are appearing in case if those are duplicate then also it is coming in the list. But what I want to do is that I want to give a DEPT_NO and want to see all the employees details for that department. If multiple employee exist in that department then I want to see all the employees.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can achive this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am very new to SAP, so I don't have much idea about ABAP programming. If I have to write any ABAP code for the above requirement then please also specify how do I compile and execute that one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Koushik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 05:45:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008223#M957550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T05:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008224#M957551</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 think DEP_NO is foreign key in the emp table. Then pass the DEP_NO to the EMP table and get all the EMP details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select emp_no emp_name pay join_ date&lt;/P&gt;&lt;P&gt;from emp&lt;/P&gt;&lt;P&gt;into table itab&lt;/P&gt;&lt;P&gt;where dep_no = emp-dep_no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the dep_no selected in the dep table you get all the employee details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 05:57:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008224#M957551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T05:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008225#M957552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But where I should write the SQL? How the sql will be executed? and how will I find the result?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please provide the exact steps I have to perform over here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Koushik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 06:03:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008225#M957552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T06:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008226#M957553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Koushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this link for select queriey&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECT ...INTO TABLE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapbrainsonline.com/ARTICLES/TECHNICAL/optimization/optimization.html#Select%20u2026%20Into%20table" target="test_blank"&gt;http://www.sapbrainsonline.com/ARTICLES/TECHNICAL/optimization/optimization.html#Select%20u2026%20Into%20table&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 06:07:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008226#M957553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T06:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008227#M957554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry... My question is not on the select query. Rather my question is that how do I incorporate the select query and come up with the search screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Koushik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 06:12:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008227#M957554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T06:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008228#M957555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Koushik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you can do 2 things here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Either you can use Search help Exits to perform this. There you can write the query and the search help will be populated with the data. Generally Search help exits are used for filtering the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. You can create a View and then create a search help on this view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 07:31:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008228#M957555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T07:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008229#M957556</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;As I have already specified that I am very new to SAP, sa can you please explain "Search help Exits" in slightly more detail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the other option I have already created a view joining EMP and DEPT table on DEPT_NO column and using this view in elimentary search help feature. What else are you suggesting over here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am aware of Elimentary serch help &amp;amp; Collective search help. So anything else you want to specify please explain those a little bit more or provide some reference URL from where I can learn that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Koushik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 09:05:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008229#M957556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T09:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008230#M957557</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 hope the following links helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://aiokeh.wdf.sap.corp:50000/SAPIKS2/contentShow.sap?_CLASS=IWB_EXTHLP&amp;amp;_LOIO=FCFDF4D8346711D3A6720060086FAF1D&amp;amp;&amp;amp;TMP_IWB_TASK=DISPLAY&amp;amp;RELEASE=700&amp;amp;LANGUAGE=EN" target="test_blank"&gt;http://aiokeh.wdf.sap.corp:50000/SAPIKS2/contentShow.sap?_CLASS=IWB_EXTHLP&amp;amp;_LOIO=FCFDF4D8346711D3A6720060086FAF1D&amp;amp;&amp;amp;TMP_IWB_TASK=DISPLAY&amp;amp;RELEASE=700&amp;amp;LANGUAGE=EN&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 09:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008230#M957557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T09:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008231#M957558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry ... The link is not working ... ERROR IS - "Unable to determine IP address from host name for aiokeh.wdf.sap.corp"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please recheck or send an alternative link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Koushik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 09:33:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008231#M957558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T09:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Search Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008232#M957559</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;Sorry...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee52446011d189700000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/EN/cf/21ee52446011d189700000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This link should work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 09:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-search-help/m-p/4008232#M957559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T09:41:16Z</dc:date>
    </item>
  </channel>
</rss>

