<?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: Select-Option F4 Help Multiple Selection in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-f4-help-multiple-selection/m-p/6531178#M1426587</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have added the F4 to a select-option for areport and would like to get the F4 values back into the select-option, when the user selects multiple values?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is the case you have to fill the internal table behind the select-option and this will have to based on waht the user selected.&lt;/P&gt;&lt;P&gt;The first value will go on to the screen the way you have done it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is what you want to do?&lt;/P&gt;&lt;P&gt;Rene&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Dec 2009 03:35:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-29T03:35:25Z</dc:date>
    <item>
      <title>Select-Option F4 Help Multiple Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-f4-help-multiple-selection/m-p/6531177#M1426586</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 wriiten the code to provide custom F4 help for a field using F4IF_INT_TABLE_VALUE_REQUEST' and then updating the values back to screen using Function Module DYNP_VALUES_UPDATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is working fine when the F4 is used on the main screen, But when i click on the multiple selection button and press F4, i do get the F4 values list, but selected value is not getting passed back to the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess the issue is the field name changes in the multiple section option, Please suggest how can i fix it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  update_date_bATCH&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      Updating the sel_screen with the retrieved values&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM update_date_batch USING pt_filename pt_fieldvalue.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Rundate&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  st_dyn_fields-fieldname  = pt_filename.&lt;/P&gt;&lt;P&gt;  st_dyn_fields-fieldvalue = pt_fieldvalue.&lt;/P&gt;&lt;P&gt;  APPEND st_dyn_fields TO it_dyn_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Function Module to update the screen with the values retrieved&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname               = sy-repid&lt;/P&gt;&lt;P&gt;      dynumb               = sy-dynnr&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields           = it_dyn_fields&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      invalid_abapworkarea = 1&lt;/P&gt;&lt;P&gt;      invalid_dynprofield  = 2&lt;/P&gt;&lt;P&gt;      invalid_dynproname   = 3&lt;/P&gt;&lt;P&gt;      invalid_dynpronummer = 4&lt;/P&gt;&lt;P&gt;      invalid_request      = 5&lt;/P&gt;&lt;P&gt;      no_fielddescription  = 6&lt;/P&gt;&lt;P&gt;      undefind_error       = 7&lt;/P&gt;&lt;P&gt;      OTHERS               = 8.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE i006(zffi).&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " update_new_date_time&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Dec 2009 23:00:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-f4-help-multiple-selection/m-p/6531177#M1426586</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-28T23:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Option F4 Help Multiple Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-f4-help-multiple-selection/m-p/6531178#M1426587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have added the F4 to a select-option for areport and would like to get the F4 values back into the select-option, when the user selects multiple values?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is the case you have to fill the internal table behind the select-option and this will have to based on waht the user selected.&lt;/P&gt;&lt;P&gt;The first value will go on to the screen the way you have done it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is what you want to do?&lt;/P&gt;&lt;P&gt;Rene&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Dec 2009 03:35:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-f4-help-multiple-selection/m-p/6531178#M1426587</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-29T03:35:25Z</dc:date>
    </item>
  </channel>
</rss>

