<?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: Pass value from return field from F4 value request functionality in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-return-field-from-f4-value-request-functionality/m-p/5422883#M1244539</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;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the lt_return table get the value of SFIENM. Then use the value and fetch the next column details from the lt_list and use the function module 'DYNP_VALUES_UPDATE'  and fill both the columns in the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sharin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Apr 2009 08:47:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-03T08:47:25Z</dc:date>
    <item>
      <title>Pass value from return field from F4 value request functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-return-field-from-f4-value-request-functionality/m-p/5422881#M1244537</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;I have this table control and have 2 columns, in which in the first column I have implemented a F4 process on value request. In the module I'm also populating the second column depending on the value of the first column. The problem is only the first column is getting populated with the selected data from the f4 list. During debug both columns have data. Any hints why this is happening?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PROCESS ON VALUE-REQUEST.
  FIELD gt_copa-sfienm MODULE f4_sfienm.

  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      retfield        = 'SFIENM'
      value_org       = 'S'
    TABLES
      value_tab       = lt_list
      return_tab      = lt_return
    EXCEPTIONS
      parameter_error = 1
      no_values_found = 2
      OTHERS          = 3.
  IF lt_return[] IS NOT INITIAL.
    READ TABLE lt_return INTO ls_return INDEX 1.
    READ TABLE lt_list INTO ls_list WITH KEY name = ls_return-fieldval.
    IF sy-subrc EQ 0.
      gt_copa-sfienm = ls_list-characteristic. " First column of table control 
      gt_copa-txt_m  = ls_list-name.             " Second column of table control
    ENDIF.
  ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2009 03:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-return-field-from-f4-value-request-functionality/m-p/5422881#M1244537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-03T03:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Pass value from return field from F4 value request functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-return-field-from-f4-value-request-functionality/m-p/5422882#M1244538</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;U should call the F4 Help FM for every field or column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try calling it 2 times passing different reffield...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope its clear!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2009 04:01:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-return-field-from-f4-value-request-functionality/m-p/5422882#M1244538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-03T04:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: Pass value from return field from F4 value request functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-return-field-from-f4-value-request-functionality/m-p/5422883#M1244539</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;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From the lt_return table get the value of SFIENM. Then use the value and fetch the next column details from the lt_list and use the function module 'DYNP_VALUES_UPDATE'  and fill both the columns in the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sharin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2009 08:47:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-return-field-from-f4-value-request-functionality/m-p/5422883#M1244539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-03T08:47:25Z</dc:date>
    </item>
  </channel>
</rss>

