<?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: F4IF_INT_TABLE_VALUE_REQUEST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/4699670#M1104409</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just use READ. to get all the other values from the table u passed to 'F4IF_INT_TABLE_VALUE_REQUEST'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Nov 2008 09:51:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-04T09:51:41Z</dc:date>
    <item>
      <title>F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/4699669#M1104408</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 am using the above FM .The return table returns only the selected field , how do i retrieve other fields in the selected row. ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 09:48:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/4699669#M1104408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T09:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/4699670#M1104409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just use READ. to get all the other values from the table u passed to 'F4IF_INT_TABLE_VALUE_REQUEST'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 09:51:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/4699670#M1104409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T09:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/4699671#M1104410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi...&lt;/P&gt;&lt;P&gt;with returned value ..just read the record from value tab we u have all fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 09:52:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/4699671#M1104410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T09:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/4699672#M1104411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;   To map other field of selected row to corresponding field use dynpfld_mapping option of the Function module. for this first declare internal table of the same type and then fill fldname, dyfldname and then append to the internal table. In this, FM takes fields of the F4 table as 'F0001', "F0002',.... like that means if the f4 help containing four fields and you want to map  two fields into twooo screen fields, function module treats those four fields as 'F0001'...'F0004'. To fill the dyfldname specify the screen field into which you want to map F4 table field. For example...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  fs_dynpfld_mapping-fldname = 'F0002'. i.e., &amp;lt; Second filed of F4 Value table&amp;gt;&lt;/P&gt;&lt;P&gt;  fs_dynpfld_mapping-dyfldname = &amp;lt;Screen filed name&amp;gt;.&lt;/P&gt;&lt;P&gt;  APPEND fs_dynpfld_mapping TO t_dynpfld_mapping.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        retfield        = c_retfield3 &amp;lt; Return field name&amp;gt;&lt;/P&gt;&lt;P&gt;        dynpprog        = sy-repid &amp;lt; Return program name&amp;gt;&lt;/P&gt;&lt;P&gt;        dynpnr          = sy-dynnr &amp;lt; Screen Number&amp;gt;&lt;/P&gt;&lt;P&gt;        dynprofield     = c_dynfield3 &amp;lt; Screen field name&amp;gt;&lt;/P&gt;&lt;P&gt;        value_org       = 'S'&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        value_tab       = t_license_depb &amp;lt; F4 Value table&amp;gt;&lt;/P&gt;&lt;P&gt;        dynpfld_mapping = t_dynpfld_mapping. &amp;lt; Field mapping table&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will give you some idea,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aswini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 10:04:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/4699672#M1104411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T10:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/4699673#M1104412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;  The selected value may not be a unique one , so i may end up &lt;/P&gt;&lt;P&gt;retrieving duplicate values .&lt;/P&gt;&lt;P&gt;so this solution is not possible .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 10:10:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/4699673#M1104412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T10:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/4699674#M1104413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi aswini,&lt;/P&gt;&lt;P&gt;  Thanks for the reply , but the catch in my code is  that am  going to place only one value on the screen  . I want the other field in the selected row, only for some validation  . So please suggest me if you  have solution for that .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2008 10:12:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/4699674#M1104413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-04T10:12:33Z</dc:date>
    </item>
  </channel>
</rss>

