<?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 module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1534907#M244103</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 got 2 i/o boxes having 2 search help.For eg Let the 1st field(i/o) be project code and 2nd i/o be project name.I have created the sme search help for the 2 fields as they are from same table.My requirement is When i click on the search help for 1st field ie project code it displays both project code and project name And whn i click on one of the value both i/o fields ie project code and project name should be filled up as shown in the search help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Aug 2006 10:27:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-29T10:27:36Z</dc:date>
    <item>
      <title>module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1534907#M244103</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 got 2 i/o boxes having 2 search help.For eg Let the 1st field(i/o) be project code and 2nd i/o be project name.I have created the sme search help for the 2 fields as they are from same table.My requirement is When i click on the search help for 1st field ie project code it displays both project code and project name And whn i click on one of the value both i/o fields ie project code and project name should be filled up as shown in the search help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Aug 2006 10:27:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1534907#M244103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-29T10:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1534908#M244104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;         you have to use search help exit. In search help exit give one function module name which will have same parameters like "F4IF_SHLP_EXIT_EXAMPLE" and in this you have to map the fields in your Screen and fields in your search help. i have created one small test program just have a look on it.&lt;/P&gt;&lt;P&gt;On my screen Material, plant, MRP type and MRP controller are the fields. when i press F4 on Material it will give all field values on screen.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FUNCTION zja_test.
*"----------------------------------------------------------------------
*"*"Local interface:
*"  TABLES
*"      SHLP_TAB TYPE  SHLP_DESCR_TAB_T
*"      RECORD_TAB STRUCTURE  SEAHLPRES
*"  CHANGING
*"     REFERENCE(SHLP) TYPE  SHLP_DESCR_T
*"     REFERENCE(CALLCONTROL) LIKE  DDSHF4CTRL STRUCTURE  DDSHF4CTRL
*"----------------------------------------------------------------------
  DATA: interface LIKE LINE OF shlp-interface.

  CHECK callcontrol-step = 'PRESEL1'.

  READ TABLE shlp-interface  INTO interface
                     WITH KEY shlpfield = 'WERKS'..
  IF sy-subrc &amp;lt;&amp;gt; 0.
    interface-shlpfield = 'WERKS'.--Field on your Search Help
    interface-valfield = 'PLANT'.-----Field on your Screen
    APPEND interface TO shlp-interface.
  ENDIF.

  READ TABLE shlp-interface  INTO interface
                     WITH KEY shlpfield = 'DISMM'..
  IF sy-subrc &amp;lt;&amp;gt; 0.
    interface-shlpfield = 'DISMM'.
    interface-valfield = 'DISMM'.
    APPEND interface TO shlp-interface.
  ENDIF.

  READ TABLE shlp-interface  INTO interface
                     WITH KEY shlpfield = 'DISPO'..
  IF sy-subrc &amp;lt;&amp;gt; 0.
    interface-shlpfield = 'DISPO'.
    interface-valfield = 'DISPO'.
    APPEND interface TO shlp-interface.
  ENDIF.
ENDFUNCTION.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it is helpfull,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mohan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Alex: Please reward points if it is helpfull.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2006 04:58:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1534908#M244104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-30T04:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1534909#M244105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use the "Process on value-request" for ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process on value-request&lt;/P&gt;&lt;P&gt;Field &amp;lt;field name of project code/name&amp;gt; Module &amp;lt;module name&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Module defn u can use the fm&lt;/P&gt;&lt;P&gt;"DYNP_VALUE_READ" to read the value of either project name or code selected by the user and fetch the corresponding value of project name/code and the value to the screen field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Aug 2006 05:16:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/1534909#M244105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-30T05:16:29Z</dc:date>
    </item>
  </channel>
</rss>

