<?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: Multiple fields need F4 in module pool screen? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-fields-need-f4-in-module-pool-screen/m-p/1139518#M114134</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rich for replying. The trouble is I already have a statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;FIELD TXTPROFITCTR MODULE VALUE_HELP_PRCTR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my screen so now if I try to add the statements&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;  FIELD GT_OLD_PCCT-/BIC/UFACTCAI MODULE VALUE_HELP_PRCTR.&lt;/P&gt;&lt;P&gt;*GT_OLD_PCCT is my internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It gives me and error saying "You already have a Process Statement..."&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Feb 2006 01:26:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-02T01:26:49Z</dc:date>
    <item>
      <title>Multiple fields need F4 in module pool screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-fields-need-f4-in-module-pool-screen/m-p/1139516#M114132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;  I have a screen with one field (TXTPROFITCTR) and one table control (TBLPROFITCTR) on it. The one field acts as selection field, user can click F4 choose, choose a value and then click on a display button to see details in a table control on the screen. This part is working fine.&lt;/P&gt;&lt;P&gt;  The trouble is that there are two editable fields in the table control which also require F4 functionality. I have coded the customized F4 help screen for the selection field TXTPROFITCTR with.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;  FIELD TXTPROFITCTR MODULE VALUE_HELP_PRCTR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when the user clicks on F4 in the table control the code in module VALUE_HELP_PRCTR, is not executed (obviously because its mapped for TXTPROFITCTR field). Instead another F4 selection screen opens with all fields from the master table for that field, but I want to show a customized F4 screen for the two fields in the table control as well. Can someone please guide me??&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;  Is there any option besides Search Help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 00:28:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-fields-need-f4-in-module-pool-screen/m-p/1139516#M114132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T00:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple fields need F4 in module pool screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-fields-need-f4-in-module-pool-screen/m-p/1139517#M114133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to tie the search help to the field of the table.  Not sure what the name of your internal table is here, lets just say ITAB.  Then you need to do something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

PROCESS ON VALUE-REQUEST.
FIELD &amp;lt;b&amp;gt;ITAB-TXTPROFITCTR&amp;lt;/b&amp;gt; MODULE VALUE_HELP_PRCTR.



&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will fire your help for that field in your table controll&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Welcome to SDN!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 00:43:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-fields-need-f4-in-module-pool-screen/m-p/1139517#M114133</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-02T00:43:48Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple fields need F4 in module pool screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-fields-need-f4-in-module-pool-screen/m-p/1139518#M114134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rich for replying. The trouble is I already have a statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;FIELD TXTPROFITCTR MODULE VALUE_HELP_PRCTR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my screen so now if I try to add the statements&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;  FIELD GT_OLD_PCCT-/BIC/UFACTCAI MODULE VALUE_HELP_PRCTR.&lt;/P&gt;&lt;P&gt;*GT_OLD_PCCT is my internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It gives me and error saying "You already have a Process Statement..."&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 01:26:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-fields-need-f4-in-module-pool-screen/m-p/1139518#M114134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T01:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple fields need F4 in module pool screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-fields-need-f4-in-module-pool-screen/m-p/1139519#M114135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I should have been more clear....just add the line to the exists section.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

PROCESS ON VALUE-REQUEST.

FIELD TXTPROFITCTR MODULE VALUE_HELP_PRCTR.
FIELD GT_OLD_PCCT-/BIC/UFACTCAI MODULE VALUE_HELP_PRCTR.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 01:30:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-fields-need-f4-in-module-pool-screen/m-p/1139519#M114135</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-02T01:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple fields need F4 in module pool screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-fields-need-f4-in-module-pool-screen/m-p/1139520#M114136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You my friend are very good. Thank you so much. I have given you 10 points. One final question can you please suggest some really good book or website for studying the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module Pool (Screen Painters)&lt;/P&gt;&lt;P&gt;ALE /IDocs&lt;/P&gt;&lt;P&gt;Smart Forms&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 02:13:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-fields-need-f4-in-module-pool-screen/m-p/1139520#M114136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T02:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple fields need F4 in module pool screen?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-fields-need-f4-in-module-pool-screen/m-p/1139521#M114137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SAP Press publishes a book on SmartForms.  Probably wouldn't be a bad idea to pick it up.  You can find module pool programming in any of the ABAP books from sap press.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-press.com/" target="test_blank"&gt;http://www.sap-press.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 02:22:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-fields-need-f4-in-module-pool-screen/m-p/1139521#M114137</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-02T02:22:38Z</dc:date>
    </item>
  </channel>
</rss>

