<?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 syntax for search help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-for-search-help/m-p/5014014#M1166878</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the syntax to link a search help to a parameter?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Jan 2009 14:17:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-02T14:17:03Z</dc:date>
    <item>
      <title>syntax for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-for-search-help/m-p/5014014#M1166878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the syntax to link a search help to a parameter?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 14:17:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-for-search-help/m-p/5014014#M1166878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T14:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-for-search-help/m-p/5014015#M1166879</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;PARAMETERS p_carrid TYPE s_carr_id &lt;/P&gt;&lt;P&gt;           MATCHCODE OBJECT demo_f4_de.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 14:18:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-for-search-help/m-p/5014015#M1166879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-02T14:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-for-search-help/m-p/5014016#M1166880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venus.. you need to search the forum first and if you don't find a solution then u need to post the question...thank you for keeping SCN clean.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 14:52:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-for-search-help/m-p/5014016#M1166880</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-01-02T14:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-for-search-help/m-p/5014017#M1166881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;F1 on PARAMETERS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jan 2009 16:15:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-for-search-help/m-p/5014017#M1166881</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2009-01-02T16:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: syntax for search help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-for-search-help/m-p/5014018#M1166882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Venus.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try with the following Code it will solve your problem i think,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: ppernr(8) TYPE c.

DATA: i_return TYPE ddshretval OCCURS 0 WITH HEADER LINE,
      c TYPE c VALUE 'S'.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR ppernr.

  TYPES: BEGIN OF t_sh_rsmid,
    pernr LIKE pa0001-pernr,
    ename LIKE pa0001-ename,
  END OF t_sh_rsmid.

  DATA: it_sh_rsmid TYPE STANDARD TABLE OF t_sh_rsmid WITH HEADER LINE.

  SELECT DISTINCT pa0001~pernr pa0001~ename
    INTO CORRESPONDING FIELDS OF TABLE it_sh_rsmid
    FROM pa0001
    where pa0001~endda = '99991231' .

  SORT it_sh_rsmid BY pernr.

  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      retfield    = 'PERNR'
      dynpprog    = sy-repid
      dynpnr      = sy-dynnr
      dynprofield = 'pernr'
      value_org   = c
    TABLES
      value_tab   = it_sh_rsmid
      return_tab  = i_return.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;replay if any problem related to this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Jan 2009 11:50:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-for-search-help/m-p/5014018#M1166882</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-01-03T11:50:50Z</dc:date>
    </item>
  </channel>
</rss>

