<?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: F4 help in module pool programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool-programming/m-p/8475293#M1651762</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;For your 1st query,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;make use of FM &lt;STRONG&gt;DYNP_VALUES_READ&lt;/STRONG&gt; to read the user entered value in the screen. You should write this business logic inside the search help module for that field written under PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Eg:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;dynpfld-fieldname = 'MATNR'. (Name of the field in the screeen)&lt;/P&gt;&lt;P&gt;append dynpfld.&lt;/P&gt;&lt;P&gt;CALL FUNCTION '&lt;STRONG&gt;DYNP_VALUES_READ&lt;/STRONG&gt;'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;DYNAME = sy-repid&lt;/P&gt;&lt;P&gt;DYNUMB = sy-dynnr&lt;/P&gt;&lt;P&gt;TRANSLATE_TO_UPPER = 'X'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DYNPFIELDS = dynpfld.&lt;/P&gt;&lt;P&gt;read table dynpfld INDEX 1.&lt;/P&gt;&lt;P&gt;matnr = dynpfld-fieldvalue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 10 Dec 2011 10:08:56 GMT</pubDate>
    <dc:creator>Arun_Prabhu_K</dc:creator>
    <dc:date>2011-12-10T10:08:56Z</dc:date>
    <item>
      <title>F4 help in module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool-programming/m-p/8475292#M1651761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I have two issues in module pool programming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) In my screen 100, I have 3 fields matnr(Material number) and sernr(Serial number) and TestID (Custom value)&lt;/P&gt;&lt;P&gt;    I have a table DDIC standard 'Z' with the above fields MATNR,SERNR,TESTID and DATE.&lt;/P&gt;&lt;P&gt;    I have created a simple F4 search help to TESTID and have assigned to the parameter in module pool.&lt;/P&gt;&lt;P&gt;    My question is I want capture the matnr entered in the screen 100 and automatically assign it to the F4 help screen that pops up automatically when I hit F4 button. While creating the search I help I gave the search parameters as matnr,sernr and date. My issue is I must pass the value entered in the screen 100 to the search help screen automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) I have created a custom domain location 'ZLOCATION' in its value pair, I have maintained the value for the domain.&lt;/P&gt;&lt;P&gt;(E.G) V - Vendor, O - Other etc. In my module pool, I have one of the fields type as ZLOCATION. And once I press F4 help for this parameter, the value maintained should appear. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Is it possible to provide text box(for comments) in module pool programming?. Text box - having multiple rows for input instead of one row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Awaiting reply experts thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Dec 2011 02:06:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool-programming/m-p/8475292#M1651761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-10T02:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help in module pool programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool-programming/m-p/8475293#M1651762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;For your 1st query,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;make use of FM &lt;STRONG&gt;DYNP_VALUES_READ&lt;/STRONG&gt; to read the user entered value in the screen. You should write this business logic inside the search help module for that field written under PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Eg:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;dynpfld-fieldname = 'MATNR'. (Name of the field in the screeen)&lt;/P&gt;&lt;P&gt;append dynpfld.&lt;/P&gt;&lt;P&gt;CALL FUNCTION '&lt;STRONG&gt;DYNP_VALUES_READ&lt;/STRONG&gt;'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;DYNAME = sy-repid&lt;/P&gt;&lt;P&gt;DYNUMB = sy-dynnr&lt;/P&gt;&lt;P&gt;TRANSLATE_TO_UPPER = 'X'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;DYNPFIELDS = dynpfld.&lt;/P&gt;&lt;P&gt;read table dynpfld INDEX 1.&lt;/P&gt;&lt;P&gt;matnr = dynpfld-fieldvalue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Dec 2011 10:08:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool-programming/m-p/8475293#M1651762</guid>
      <dc:creator>Arun_Prabhu_K</dc:creator>
      <dc:date>2011-12-10T10:08:56Z</dc:date>
    </item>
  </channel>
</rss>

