<?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/5786733#M1309212</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;call this FM in AT slection-screen output event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Populate the internal table from matnr(4) from whatever table u r referring for select options.&lt;/P&gt;&lt;P&gt;And pass this internsl table to ur FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Jun 2009 07:11:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-19T07:11:37Z</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/5786731#M1309210</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;&lt;/P&gt;&lt;P&gt;Any suggestions on how to deal with this kind of requirement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Value of matnr: &lt;STRONG&gt;AAAA-00-01&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using FM &lt;STRONG&gt;F4IF_INT_TABLE_VALUE_REQUEST&lt;/STRONG&gt;, i want to populate in my selection-screen only the first 4 character of MATNR, (AAAA) to be use in my selection-screen using select-option as shown below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITEM: From - AAAA To -DDDD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will anybody share some code for me to be able to this?&lt;/P&gt;&lt;P&gt;Is the FM &lt;STRONG&gt;F4IF_INT_TABLE_VALUE_REQUEST&lt;/STRONG&gt; suitable for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Yu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2009 07:03:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5786731#M1309210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-19T07:03:56Z</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/5786732#M1309211</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;before sendin the data to the FM 'F4IF_INT_TABLE_VALUE_REQUEST ' convert it into the format you want and send that table to the FM... This will solve your problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First pass the data to the fm :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C147_STRING_SPLIT_AT_POSITION.. It will split your data at the required postion.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then pass this internal table to the FM...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT itab INTO wa_itab.

  CALL FUNCTION 'C147_STRING_SPLIT_AT_POSITION'
       EXPORTING
            i_string   = wa_itab
            i_position = 4
       IMPORTING
            e_head     = wa_itab2.

  APPEND wa_itab2 TO itab2.

ENDLOOP.

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
     EXPORTING
          retfield     = 'WA_ITAB2-field1'
          dynpprog     = sy_repid
          dynpnr       = sy-dynnr
          window_title = text-002
          value_org    = 'S'
     TABLES
          value_tab    = ITAB2
          return_tab   = gt_matnr_returned.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2009 07:05:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5786732#M1309211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-19T07:05:46Z</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/5786733#M1309212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;call this FM in AT slection-screen output event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Populate the internal table from matnr(4) from whatever table u r referring for select options.&lt;/P&gt;&lt;P&gt;And pass this internsl table to ur FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2009 07:11:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5786733#M1309212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-19T07:11:37Z</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/5786734#M1309213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Trying to analyze...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2009 07:35:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5786734#M1309213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-19T07:35:29Z</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/5786735#M1309214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your replies. Problem solved! &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2009 09:54:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5786735#M1309214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-19T09:54:09Z</dc:date>
    </item>
  </channel>
</rss>

