<?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: refresh screenn field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564526#M255138</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;Check this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="724966"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Oct 2006 10:42:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-04T10:42:37Z</dc:date>
    <item>
      <title>refresh screenn field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564520#M255132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a screen containing some fields and an alv grid control.&lt;/P&gt;&lt;P&gt;In my method data_changed of the alv grid control I change the value of one field of the screen, but it doesn't change automatically.&lt;/P&gt;&lt;P&gt;How to refresh the screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alberto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 10:28:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564520#M255132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T10:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: refresh screenn field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564521#M255133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alberto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the field is not an ALV field but a Screen field, then you need to use FM `DYNP_VALUES_READ`.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. mark points for helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 10:30:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564521#M255133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T10:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: refresh screenn field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564522#M255134</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;use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF dynprofelder OCCURS 10.&lt;/P&gt;&lt;P&gt;          INCLUDE STRUCTURE dynpread.&lt;/P&gt;&lt;P&gt;  DATA: END OF dynprofelder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH dynprofelder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  dynprofelder-fieldname = 'SCREEEN_FIELD_NAME'.&lt;/P&gt;&lt;P&gt;  dynprofelder-fieldvalue = put_the_required_value.&lt;/P&gt;&lt;P&gt;  APPEND dynprofelder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    call function 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        dyname               = sy-cprog&lt;/P&gt;&lt;P&gt;        dynumb               = sy-dynnr&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;        dynpfields           = dynprofelder&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;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 10:34:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564522#M255134</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-10-04T10:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: refresh screenn field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564523#M255135</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;   Some action has to be triggered so that SAP executes PAI and PBO, so proably if you press enter it should goto PAI where it should update the field which should have the value entered by the user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sathish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 10:34:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564523#M255135</guid>
      <dc:creator>sathish_perumal</dc:creator>
      <dc:date>2006-10-04T10:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: refresh screenn field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564524#M255136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Welcome to SDN..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use refresh_table_display method of the ALV grid object...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 10:39:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564524#M255136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T10:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: refresh screenn field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564525#M255137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you need to update the Screen field with the Function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dynpro-fieldname = &amp;lt;&amp;gt;Field namw&amp;gt;.&lt;/P&gt;&lt;P&gt;dynpro-fieldvalue = &amp;lt;Field Value&amp;gt;.&lt;/P&gt;&lt;P&gt;APPEND dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;dyname = sy-cprog&lt;/P&gt;&lt;P&gt;dynumb = sy-dynnr&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;dynpfields = dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 10:40:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564525#M255137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T10:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: refresh screenn field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564526#M255138</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;Check this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="724966"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Oct 2006 10:42:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/refresh-screenn-field/m-p/1564526#M255138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-04T10:42:37Z</dc:date>
    </item>
  </channel>
</rss>

