<?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: Execute MatchCode via Function Module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-matchcode-via-function-module/m-p/2170552#M460318</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;F4_SELECT_FROM_SEARCH_HELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Apr 2007 16:21:53 GMT</pubDate>
    <dc:creator>suresh_datti</dc:creator>
    <dc:date>2007-04-26T16:21:53Z</dc:date>
    <item>
      <title>Execute MatchCode via Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-matchcode-via-function-module/m-p/2170551#M460317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone know the name of the standard Module that execute an specific match-code by passing the import and export parameters?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 16:16:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-matchcode-via-function-module/m-p/2170551#M460317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T16:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: Execute MatchCode via Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-matchcode-via-function-module/m-p/2170552#M460318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;F4_SELECT_FROM_SEARCH_HELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 16:21:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-matchcode-via-function-module/m-p/2170552#M460318</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-04-26T16:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Execute MatchCode via Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/execute-matchcode-via-function-module/m-p/2170553#M460319</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;Check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PROCESS ON VALUE-REQUEST event...call the search help for the field using the function module F4IF_START_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then from the return internal table move the values to the table control internal table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this example of how to use this function module..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: shlp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: sh TYPE shlp_descr_t.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lt_f4 LIKE ddshretval OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_plnty TYPE plnty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_plnty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: interface LIKE ddshiface OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: v_plnnr TYPE plnnr.&lt;/P&gt;&lt;P&gt;DATA: v_plnal TYPE plnal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sh-shlpname = 'PLKS'.&lt;/P&gt;&lt;P&gt;sh-shlptype = 'SH'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DD_SHLP_GET_DIALOG_INFO'&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;shlp = sh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface-shlpfield = 'PLNNR'.&lt;/P&gt;&lt;P&gt;interface-valfield = 'V_PLNNR'.&lt;/P&gt;&lt;P&gt;APPEND interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;interface-shlpfield = 'PLNAL'.&lt;/P&gt;&lt;P&gt;interface-valfield = 'V_PLNAL'.&lt;/P&gt;&lt;P&gt;APPEND interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sh-interface[] = interface[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: t_return LIKE ddshretval OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: v_subrc TYPE sysubrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_START_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;shlp = sh&lt;/P&gt;&lt;P&gt;disponly = ' '&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;rc = v_subrc&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;return_values = t_return.&lt;/P&gt;&lt;P&gt;&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;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 16:23:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/execute-matchcode-via-function-module/m-p/2170553#M460319</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T16:23:12Z</dc:date>
    </item>
  </channel>
</rss>

