<?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 search help method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-method/m-p/1867758#M365635</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends &lt;/P&gt;&lt;P&gt; i have a write a code where in the impoting parameter could be &lt;/P&gt;&lt;P&gt;firstname, lastname and empid and exporting parameter should be a table which would contain the employee name and his manger name.&lt;/P&gt;&lt;P&gt; I have to write a search method. I would search an employee using wildcard characters (in paramter)  for eg if i input 'Chris*' and press f4 or enter it has to show all the name starting with 'Chris......' . &lt;/P&gt;&lt;P&gt;  How to do that pls help me &lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Feb 2007 09:29:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-05T09:29:36Z</dc:date>
    <item>
      <title>search help method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-method/m-p/1867758#M365635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends &lt;/P&gt;&lt;P&gt; i have a write a code where in the impoting parameter could be &lt;/P&gt;&lt;P&gt;firstname, lastname and empid and exporting parameter should be a table which would contain the employee name and his manger name.&lt;/P&gt;&lt;P&gt; I have to write a search method. I would search an employee using wildcard characters (in paramter)  for eg if i input 'Chris*' and press f4 or enter it has to show all the name starting with 'Chris......' . &lt;/P&gt;&lt;P&gt;  How to do that pls help me &lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 09:29:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-method/m-p/1867758#M365635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T09:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: search help method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-method/m-p/1867759#M365636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In se11 you have to create the search help and in data element level you can create it .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 09:35:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-method/m-p/1867759#M365636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T09:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: search help method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-method/m-p/1867760#M365637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to find his manager name - &lt;/P&gt;&lt;P&gt;1)u have first find the position of the pernr given from table HRp1001. (A008 relation)&lt;/P&gt;&lt;P&gt;2) then find approver posiiton of tht position from hrp1001 only (A002 relation)&lt;/P&gt;&lt;P&gt;3) find holder of tht postion frm HRp1001 (A008 relation)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 09:42:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-method/m-p/1867760#M365637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T09:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: search help method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-method/m-p/1867761#M365638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Follow these steps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now go to SE11 click on search help button and create.&lt;/P&gt;&lt;P&gt;click on elementary search help&lt;/P&gt;&lt;P&gt;once you have created you will see selection method there give there your table name (Example : lfa1)&lt;/P&gt;&lt;P&gt;in the paremeters give the field name &amp;lt;field name&amp;gt; and click on EXP button Lpos as 1 &amp;amp; Spos as 1 then enter and save.&lt;/P&gt;&lt;P&gt;In the code ie se38 give this way&lt;/P&gt;&lt;P&gt;select-options: S_&amp;lt;fieldname&amp;gt; for lfa1-&amp;lt;fieldname&amp;gt; MATCHCODE OBJECT MCO..&lt;/P&gt;&lt;P&gt;ACTIVATE AND EXECUATE WHEN U CLICK ON F4 you can see the values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vikranth Khimavath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 09:52:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help-method/m-p/1867761#M365638</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T09:52:42Z</dc:date>
    </item>
  </channel>
</rss>

