<?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 F4 help in module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool/m-p/8250604#M1631044</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;                   Plz help me on below issue. In module pool i create F4 help for customer field. If we choose f4 for customer field it display customer number, plant, serial number and material. &lt;/P&gt;&lt;P&gt;for example in f4 its showing 10 records. If i select 5 th record I need to store mateiral serail number . How to do this one? I am using F4IF_INT_TABLE_VALUE_REQUEST for customer field f4.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Oct 2011 13:03:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-10-10T13:03:46Z</dc:date>
    <item>
      <title>F4 help in module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool/m-p/8250604#M1631044</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;                   Plz help me on below issue. In module pool i create F4 help for customer field. If we choose f4 for customer field it display customer number, plant, serial number and material. &lt;/P&gt;&lt;P&gt;for example in f4 its showing 10 records. If i select 5 th record I need to store mateiral serail number . How to do this one? I am using F4IF_INT_TABLE_VALUE_REQUEST for customer field f4.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Oct 2011 13:03:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool/m-p/8250604#M1631044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-10T13:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help in module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool/m-p/8250605#M1631045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts , Plz help me. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If i choose f4 in customer feild place its displaying 10records . I selected 5 th recored . It contains 100(kunnr),120(serial number ) , 1250 ( material number ) 1800(plnat). I need to store this mateirla serail number 120 in some some varialble . how to store this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;urssmn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Oct 2011 13:26:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool/m-p/8250605#M1631045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-10T13:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help in module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool/m-p/8250606#M1631046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
  EXPORTING
*   DDIC_STRUCTURE         =
    retfield               = 'KUNNR'
*   PVALKEY                = ' '
    DYNPPROG               = sy-cprog
    DYNPNR                 = sy-dynnr
    DYNPROFIELD            = 'P_KUNNR'
*   STEPL                  = 0
*   WINDOW_TITLE           =
*   VALUE                  = ' '
   VALUE_ORG              = 'S'
*   MULTIPLE_CHOICE        = ' '
*    DISPLAY                = 'X'
*   CALLBACK_PROGRAM       = ' '
*   CALLBACK_FORM          = ' '
*   MARK_TAB               =
* IMPORTING
*   USER_RESET             =
  tables
    value_tab             = lt_itab
*   FIELD_TAB              = 
   RETURN_TAB             = lt_ret
*   DYNPFLD_MAPPING        =
 EXCEPTIONS
   PARAMETER_ERROR        = 1
   NO_VALUES_FOUND        = 2
   OTHERS                 = 3
          .
IF sy-subrc &amp;lt;&amp;gt; 0.
 MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

read table lt_ret into ls_ret index 1.
 if sy-subrc is initial.
  read table lt_itab with key kunnr = ls_ret-FIELDVAL.
   lv_matnr =  lt_itab-matnr.                                  "this you need
   lv_serial = lt_itab-sernr.                                    "this you need
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Diwakar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2011 04:53:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool/m-p/8250606#M1631046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-11T04:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help in module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool/m-p/8250607#M1631047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Diwakar, this code is very helpful to me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2011 05:24:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-in-module-pool/m-p/8250607#M1631047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-11T05:24:17Z</dc:date>
    </item>
  </channel>
</rss>

