<?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: Function module 'F4IF_INT_TABLE_VALUE_REQUEST' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-f4if-int-table-value-request/m-p/3162625#M752268</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The  RETURN_TAB is used to return the Selected F4 value to the field defined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the tabe parameter is passed with&lt;/P&gt;&lt;P&gt; RETURN_TAB = IT_RETURN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declaration of the table is &lt;/P&gt;&lt;P&gt;DATA: IT_RETURN LIKE DDSHRETVAL OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Dec 2007 06:09:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-13T06:09:26Z</dc:date>
    <item>
      <title>Function module 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-f4if-int-table-value-request/m-p/3162621#M752264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;   Here  what is the use of RETURN_TAB field, i mentioned it's in bold&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: RET_TAB TYPE TABLE OF DDSHRETVAL WITH HEADER LINE.&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               = 'PONO' " ORIGINAL TABLE FIELD NAME&lt;/P&gt;&lt;P&gt;   DYNPROFIELD            = 'DYNFIELD'" STRINGVALUE&lt;/P&gt;&lt;P&gt;   DYNPPROG               = 'SY-CPROG'"PROGRAM NAME&lt;/P&gt;&lt;P&gt;   DYNPNR                 = SY-DYNNR "SCREEN NUMBER&lt;/P&gt;&lt;P&gt;   WINDOW_TITLE           = 'PURCHASE ORDER NUMBER'" TITLE&lt;/P&gt;&lt;P&gt;    VALUE_ORG              = 'S'&lt;/P&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    value_tab              = ITAB "INTERNAL TABLE&lt;/P&gt;&lt;P&gt;    &amp;lt;b&amp;gt;RETURN_TAB             = RET_TAB &amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;   PARAMETER_ERROR        = 1&lt;/P&gt;&lt;P&gt;   NO_VALUES_FOUND        = 2&lt;/P&gt;&lt;P&gt;   OTHERS                 = 3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 05:48:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-f4if-int-table-value-request/m-p/3162621#M752264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T05:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Function module 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-f4if-int-table-value-request/m-p/3162622#M752265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Return the selected values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 06:04:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-f4if-int-table-value-request/m-p/3162622#M752265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T06:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Function module 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-f4if-int-table-value-request/m-p/3162623#M752266</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;&lt;/P&gt;&lt;P&gt;The selected value is returned in table RETURN_TAB if it is not copied to screen fields in the module itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Caution: Despite being called with RETURN_TAB, up to Release 4.6B the help is started amodally as soon as the screen information DYNPPROG, DYNPNR and DYNPROFIELD is passed and the user has activated the ActiveX help. In this case you cannot be sure that the RETURN_TAB contains the selected lines of the hit list. In an amodal call, the function module terminates before the user has made his choice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In most cases table RETURN_TAB has exactly one line containing the contents of the return column from the selected line of the hit list in field FIELDVAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If RETURN_TAB does not contain any lines, the user has terminated the selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there are multiple return columns or if multiple selection was allowed, the table can contain more than one line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is more than one return column, FIELDNAME specifies the column to which the value in FIELDVAL belongs. FIELDNAME corresponds to field FIELDNAME in table FIELD_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With multiple selection (more than one line of the hit list is selected), field RECORDPOS is used to number the lines, i.e. if three lines were selected, all the columns of the first selected line are numbered with RECORDPOS = 1, all the columns of the second line are numbered wiith RECORDPOS = 2, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field RETFIELD specifies the screen field belonging to the column if it is known. If there is only one return column, RETFIELD contains the field name passed in DYNPROFIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field SHLPNAME is not relevant for this module.&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;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 06:08:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-f4if-int-table-value-request/m-p/3162623#M752266</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2007-12-13T06:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: Function module 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-f4if-int-table-value-request/m-p/3162624#M752267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Returns the selected values into ret_tab.&lt;/P&gt;&lt;P&gt;then you can read into the input paraneter or select-option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;kavitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 06:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-f4if-int-table-value-request/m-p/3162624#M752267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T06:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Function module 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-f4if-int-table-value-request/m-p/3162625#M752268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The  RETURN_TAB is used to return the Selected F4 value to the field defined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the tabe parameter is passed with&lt;/P&gt;&lt;P&gt; RETURN_TAB = IT_RETURN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declaration of the table is &lt;/P&gt;&lt;P&gt;DATA: IT_RETURN LIKE DDSHRETVAL OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 06:09:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-f4if-int-table-value-request/m-p/3162625#M752268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T06:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Function module 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-f4if-int-table-value-request/m-p/3162626#M752269</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;&lt;/P&gt;&lt;P&gt;it will return value to ur parameter for which u created F4 help...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS :  p_kunnr TYPE kna1-kunnr .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR &amp;lt;b&amp;gt;p_kunnr&amp;lt;/b&amp;gt;.&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        = field_tab-fieldname&lt;/P&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = value_tab&lt;/P&gt;&lt;P&gt;      field_tab       = field_tab&lt;/P&gt;&lt;P&gt;      return_tab      = return_tab&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      parameter_error = 1&lt;/P&gt;&lt;P&gt;      no_values_found = 2&lt;/P&gt;&lt;P&gt;      OTHERS          = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    &amp;lt;b&amp;gt;p_kunnr&amp;lt;/b&amp;gt; = return_tab-fieldval.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 12:29:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-f4if-int-table-value-request/m-p/3162626#M752269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T12:29:18Z</dc:date>
    </item>
  </channel>
</rss>

