<?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: problem in FM DYNP_VALUES_UPDATE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417208#M1646244</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can initialize it in &lt;/P&gt;&lt;P&gt;INITLAIZATION event &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_ABC-low= 'Material1'.&lt;/P&gt;&lt;P&gt;S_abc-high= 'Material2'.&lt;/P&gt;&lt;P&gt;append S_abc.&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Dec 2011 08:32:40 GMT</pubDate>
    <dc:creator>nabheetscn</dc:creator>
    <dc:date>2011-12-29T08:32:40Z</dc:date>
    <item>
      <title>problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417204#M1646240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is my COde:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
report ZTEST_POOL.
 tables : d020s,mara.

  data: begin of dynpfields occurs 0.
          include structure dynpread.
  data: end of dynpfields.

  selection-screen : begin of block b1 with frame title text-011.
   select-options: p_list for mara-matnr.
selection-screen: end of block b1.

   dynpfields-fieldname = 'P_LIST-LOW'.
   dynpfields-fieldvalue = 'MATERIAL1'.
  append dynpfields.

 dynpfields-fieldname = 'P_LIST-HIGH'.
  dynpfields-fieldvalue = 'MATERIAL2'.
  append dynpfields.

  call function 'DYNP_VALUES_UPDATE'
       exporting
             dyname     = sy-cprog
             dynumb     = sy-dynnr
       tables
             dynpfields = dynpfields
       exceptions
             invalid_abapworkarea = 01
             invalid_dynprofield  = 02
             invalid_dynproname   = 03
             invalid_dynpronummer = 04
             invalid_request      = 05
             no_fielddescription  = 06
             undefind_error       = 07.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Wheni Execute this... My screen Fields P_LIST-LOW and P_LIST-HIGH are not updating.&lt;/P&gt;&lt;P&gt;they are still empty.&lt;/P&gt;&lt;P&gt;plz let me know whats wrong in my code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2011 06:38:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417204#M1646240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-29T06:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417205#M1646241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;assigning the value as constant. Do as below so that the value for low and high will get populate to the table&lt;/P&gt;&lt;P&gt; dynpfields-fieldname = P_LIST-LOW&lt;/P&gt;&lt;P&gt; dynpfields-fieldname = P_LIST-HIGH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2011 07:33:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417205#M1646241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-29T07:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417206#M1646242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ignore&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Keshav.T on Dec 29, 2011 1:18 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2011 07:41:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417206#M1646242</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-12-29T07:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417207#M1646243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assigning the value as constant. Do as below so that the value for low and high will get populate to the table&lt;/P&gt;&lt;P&gt;  dynpfields-fieldname = P_LIST-LOW&lt;/P&gt;&lt;P&gt;  dynpfields-fieldname = P_LIST-HIGH&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Still Not WOrking Dude!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2011 08:14:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417207#M1646243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-29T08:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417208#M1646244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can initialize it in &lt;/P&gt;&lt;P&gt;INITLAIZATION event &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_ABC-low= 'Material1'.&lt;/P&gt;&lt;P&gt;S_abc-high= 'Material2'.&lt;/P&gt;&lt;P&gt;append S_abc.&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2011 08:32:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417208#M1646244</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2011-12-29T08:32:40Z</dc:date>
    </item>
    <item>
      <title>Re: problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417209#M1646245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please, should be check if the field P_LIST are in the sy-dynnr screen or in other screen...&lt;/P&gt;&lt;P&gt;If this is a Module Pool program case, should be change the Screen in the PBO Module (the function must be in the PBO).&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;Fabio Rodriguez&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2011 18:26:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417209#M1646245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-29T18:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417210#M1646246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If is the case of the Report Program, see below, please:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-011.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: p_list FOR mara-matnr.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  p_list-sign = 'I'.&lt;/P&gt;&lt;P&gt;  p_list-option = 'BT'.          "Between&lt;/P&gt;&lt;P&gt;  p_list-low    = 'MATERIAL1'.&lt;/P&gt;&lt;P&gt;  p_list-high   = 'MATERIAL2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND p_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"YOUR CODE&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;Fabio Rodriguez&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2011 18:43:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417210#M1646246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-29T18:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417211#M1646247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;abhishek,&lt;/P&gt;&lt;P&gt;if your question is on the working of this function module, then the answer is, it will work only cases like value request(f4 helps).. read the documentation and see the where used list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, if you just want to test this FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
tables : d020s,mara.

  data: begin of dynpfields occurs 0.
          include structure dynpread.
  data: end of dynpfields.
&amp;nbsp;
  selection-screen : begin of block b1 with frame title text-011.
   select-options: p_list for mara-matnr.
selection-screen: end of block b1.
AT SELECTION-SCREEN on 
    VALUE-REQUEST FOR p_list-low. "==&amp;gt;just added this, press F4 on the low field and volla

   dynpfields-fieldname = 'P_LIST-LOW'.
   dynpfields-fieldvalue = 'MATERIAL1'.
  append dynpfields.
&amp;nbsp;
 dynpfields-fieldname = 'P_LIST-HIGH'.
  dynpfields-fieldvalue = 'MATERIAL2'.
  append dynpfields.
&amp;nbsp;
  call function 'DYNP_VALUES_UPDATE'
       exporting
             dyname     = sy-cprog
             dynumb     = sy-dynnr
       tables
             dynpfields = dynpfields
       exceptions
             invalid_abapworkarea = 01
             invalid_dynprofield  = 02
             invalid_dynproname   = 03
             invalid_dynpronummer = 04
             invalid_request      = 05
             no_fielddescription  = 06
             undefind_error       = 07.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2011 20:49:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417211#M1646247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-29T20:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417212#M1646248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abhishek1345,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as Soumya already tried to explain: DYNP_VALUES_UPDATE can be used to update the screen fields &lt;STRONG&gt;during&lt;/STRONG&gt; screen processing. If you create your own F4 help, you can use it to update fields not directly related to the field where the F4 value-request is triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually we use PBO (in  report: AT SELECTIO-SCREEN OUTPUT) or PAI (in  report: AT SELECTIO-SCREEN) to change values of screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Event INITIALIZATION is the point where you pre-set default values of screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please do not just ask a question like 'why is that FM not working?'. Please let us also know what you want to achieve.&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Dec 2011 21:19:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417212#M1646248</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-12-29T21:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417213#M1646249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if your question is on the working of this function module, then the answer is, it will work only cases like value request(f4 helps).. read the documentation and see the where used list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to use this FM  at events of Reports:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;at selection screen&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;at selection screen output&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read the documentation and see the where used list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;i can see the list of standard programs where this Fm has been used.&lt;/P&gt;&lt;P&gt;how can i get the areas of abap prog. where i can use this FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2011 09:28:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417213#M1646249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-30T09:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417214#M1646250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Usually we use PBO (in  report: AT SELECTIO-SCREEN OUTPUT) or PAI (in  report: AT SELECTIO-SCREEN) to change values of screen fields.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is my code after making some changes..&lt;/P&gt;&lt;P&gt;now i m calling this FM at This event.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

*at selection-screen output.*

   dynpfields-fieldname = 'P_LIST-LOW'.
   dynpfields-fieldvalue = 'MATERIAL1'.
  append dynpfields.

 dynpfields-fieldname = 'P_LIST-HIGH'.
  dynpfields-fieldvalue = 'MATERIAL2'.
  append dynpfields.

  call function 'DYNP_VALUES_UPDATE'
       exporting
             dyname     = sy-cprog
             dynumb     = sy-dynnr
       tables
             dynpfields = dynpfields
       exceptions
             invalid_abapworkarea = 01
             invalid_dynprofield  = 02
             invalid_dynproname   = 03
             invalid_dynpronummer = 04
             invalid_request      = 05
             no_fielddescription  = 06
             undefind_error       = 07.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Still i m not getting my fields P_LIST-LOW and P_LIST-HIGH  with values.&lt;/P&gt;&lt;P&gt;Cant we use this FM other than this event:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;at selection screen on value request for p_list-low.&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Event INITIALIZATION is the point where you pre-set default values of screen fields.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;thnks for this New information.&lt;/P&gt;&lt;P&gt;Also i can set their default values like this&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
select-options: p_list for mara-matnr default 'MATERIAL1' .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2011 09:41:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417214#M1646250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-30T09:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417215#M1646251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set a break point and see whether are you getting the values updated in the table. I think it should work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use it in at selection screen on value request for p_list-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using the function module 'F4IF_INT_TABLE_VALUE_REQUEST' for filling the values in that field.&lt;/P&gt;&lt;P&gt;Below is the sample code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**********************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Attaching Search Help on Field&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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        = 'BOOK_NAME'(155)&lt;/P&gt;&lt;P&gt;      dynpprog        = sy-repid&lt;/P&gt;&lt;P&gt;      dynpnr          = sy-dynnr&lt;/P&gt;&lt;P&gt;      dynprofield     = 'BOOK_NAME'(155)&lt;/P&gt;&lt;P&gt;      stepl           = 0&lt;/P&gt;&lt;P&gt;      window_title    = 'Book Names'(444)&lt;/P&gt;&lt;P&gt;      value           = lx_dynpfields-fieldvalue&lt;/P&gt;&lt;P&gt;      value_org       = 'S'(888)&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab       = t_book&lt;/P&gt;&lt;P&gt;      return_tab      = t_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;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;    LOOP AT  t_return_tab INTO x_return_tab.&lt;/P&gt;&lt;P&gt;      s_bnam-low = x_return_tab-fieldval.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " CALL_F4_FOR_BNAME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this will solve your issue if you still have queries please revert back to me. I will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sri Hari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2011 10:02:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417215#M1646251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-30T10:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417216#M1646252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Try using the function module 'F4IF_INT_TABLE_VALUE_REQUEST' for filling the values in that field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Dude! my aim is not to fill my fields..rather i want to know the functioning of FM &lt;STRONG&gt;'DYN_VALUES_UPDATE&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2011 12:13:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417216#M1646252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-30T12:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: problem in FM DYNP_VALUES_UPDATE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417217#M1646253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just see this link to understand about the function module and its functions clearly&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.se80.co.uk/sapfms/d/dynp/dynp_values_update.htm" target="test_blank"&gt;http://www.se80.co.uk/sapfms/d/dynp/dynp_values_update.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And you still have doubts i found a similar link posted by Keshav in our forum just see that thread, link shown below,&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1946714"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here the same problem was addressed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you still find any difficulties please revert back to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sri Hari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2011 12:48:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-fm-dynp-values-update/m-p/8417217#M1646253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-30T12:48:34Z</dc:date>
    </item>
  </channel>
</rss>

