<?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: Any program calling 'F4IF_INT_TABLE_VALUE_REQUEST' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/any-program-calling-f4if-int-table-value-request/m-p/1732659#M318947</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this program RSDEMO_DROPDOWN_LISTBOX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can either get this from where-used-list (Ctrl&lt;EM&gt;Shift&lt;/EM&gt;F3)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;- Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Dec 2006 07:19:04 GMT</pubDate>
    <dc:creator>gopi_narendra</dc:creator>
    <dc:date>2006-12-26T07:19:04Z</dc:date>
    <item>
      <title>Any program calling 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/any-program-calling-f4if-int-table-value-request/m-p/1732657#M318945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone let me know any dialog program in which 'F4IF_INT_TABLE_VALUE_REQUEST' has been used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alok.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 07:05:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/any-program-calling-f4if-int-table-value-request/m-p/1732657#M318945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T07:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: Any program calling 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/any-program-calling-f4if-int-table-value-request/m-p/1732658#M318946</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;chk this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: begin of itab occurs 0,
matnr like mara-matnr,
end of itab.


data : begin of btab occurs 0,
maktx like makt-maktx,
end of btab.

data mak like makt-maktx.

DATA : return like ddshretval occurs 0 with header line.

data: begin of dynpfields occurs 0.
include structure dynpread.
data: end of dynpfields.

parameters: p_matnr like mara-matnr,
p_maktx like makt-maktx.

Initialization.

AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_matnr.

REFRESH ITAB.
SELECT matnr FROM mara INTO TABLE ITAB.

call function 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
retfield = 'MATNR '
dynprofield = 'P_MATNR '
dynpprog = sy-REPID
dynpnr = sy-dynnr
value_org = 'S'
TABLES
value_tab = ITAB
return_tab = return.

select single maktx from makt into mak where matnr = return-fieldval.

p_matnr = return-fieldval.

refresh return.
clear return.

move 'P_MAKTX' to dynpfields-fieldname.
move mak to dynpfields-fieldvalue.
append dynpfields.


CALL FUNCTION 'DYNP_VALUES_UPDATE'
    EXPORTING
      dyname               = sy-cprog
      dynumb               = sy-dynnr
    TABLES
      dynpfields           = dynpfields
    EXCEPTIONS
      invalid_abapworkarea = 1
      invalid_dynprofield  = 2
      invalid_dynproname   = 3
      invalid_dynpronummer = 4
      invalid_request      = 5
      no_fielddescription  = 6
      undefind_error       = 7
      OTHERS               = 8.

.
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.

refresh return.
clear return.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 07:08:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/any-program-calling-f4if-int-table-value-request/m-p/1732658#M318946</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-12-26T07:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: Any program calling 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/any-program-calling-f4if-int-table-value-request/m-p/1732659#M318947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this program RSDEMO_DROPDOWN_LISTBOX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can either get this from where-used-list (Ctrl&lt;EM&gt;Shift&lt;/EM&gt;F3)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;- Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 07:19:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/any-program-calling-f4if-int-table-value-request/m-p/1732659#M318947</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2006-12-26T07:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Any program calling 'F4IF_INT_TABLE_VALUE_REQUEST'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/any-program-calling-f4if-int-table-value-request/m-p/1732660#M318948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Have a look at this program : DEMO_DROPDOWN_LIST_BOX&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 03:52:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/any-program-calling-f4if-int-table-value-request/m-p/1732660#M318948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T03:52:27Z</dc:date>
    </item>
  </channel>
</rss>

