<?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/3566118#M858190</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 refer to the link below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/Tutorials/ABAP/SearchHelp/page2.htm" target="test_blank"&gt;http://www.saptechnical.com/Tutorials/ABAP/SearchHelp/page2.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 16 Mar 2008 07:41:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-16T07:41:26Z</dc:date>
    <item>
      <title>search help ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3566117#M858189</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;Can any one tell me how to create the search help for a field on selection screen in report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : p_mblnr FOR mkpf-mblnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the Mat. doc no.in MKFP,but there is not search help in table,..so please tell me how to do.&lt;/P&gt;&lt;P&gt;Will i had to create a search help in table also or just in report wil work  fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Mar 2008 07:33:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3566117#M858189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-16T07:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: search help ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3566118#M858190</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 refer to the link below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechnical.com/Tutorials/ABAP/SearchHelp/page2.htm" target="test_blank"&gt;http://www.saptechnical.com/Tutorials/ABAP/SearchHelp/page2.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Mar 2008 07:41:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3566118#M858190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-16T07:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: search help ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3566119#M858191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hope this code might help you&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: BEGIN OF tbmblnr OCCURS 10,
  mblnr LIKE mkpf-mblnr,
END OF tbmblnr .

initialization.
tbmblnr-mblnr = '0001'.
append tbmblnr.
clear  tbmblnr.

at selection-screen on value request for p_mblnr-low.
perform a1 using p_mblnr-low
at selection-screen on value request for p_mblnr-high.
perform a1 using p_mblnr-high

form a1 usind p_mblnr1

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
 retfield = tbmblnr-mblnr    
 value_org = 'S'
TABLES
 value_tab = tbmblnr[]
EXCEPTIONS
 parameter_error = 1
 no_values_found = 2
 OTHERS = 3.
IF sy-subrc 0.
ENDIF.

endform.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Mar 2008 07:41:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3566119#M858191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-16T07:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: search help ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3566120#M858192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vipin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create search help for data element against MKPF-MBLNR and attach to it to SELECT-OPTIONS using caluse MATCHCODE OBJECT obj where obj is the search help created for the data element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these links to create search help.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee5f446011d189700000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee5f446011d189700000e8322d00/content.htm&lt;/A&gt; (For elementary search help)&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee86446011d189700000e8322d00/content.htm(For" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ee86446011d189700000e8322d00/content.htm(For&lt;/A&gt; collective search help)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Mar 2008 07:50:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3566120#M858192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-16T07:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: search help ??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3566121#M858193</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;After Initialization event use this event&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create an internal table and send all records of mblnr from mkpf table to that internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create as follows&lt;/P&gt;&lt;P&gt;data : f_name like DFIES-FIELDNAME value 'MBLNR'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen on value-request for p_mblnr.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;provide the f_name and internal table name to the function modules exporting and tables parameters&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Mar 2008 08:19:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/search-help/m-p/3566121#M858193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-16T08:19:32Z</dc:date>
    </item>
  </channel>
</rss>

