<?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: DYNP_UPDATE_FIELDS Greyed out the selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061045#M1612753</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;Thanks for ur reply, i tried but not working the issue is occuring because of  FM 'DYNP_UPDATE_FIELDS'.&lt;/P&gt;&lt;P&gt;Not getting what is wrong with the following logic.&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;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Update Field values&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  CLEAR field_value.&lt;/P&gt;&lt;P&gt;  REFRESH dynprovalues.&lt;/P&gt;&lt;P&gt;  field_value-fieldname = 'BUCKET_4-LOW'.&lt;/P&gt;&lt;P&gt;  field_value-fieldvalue =  lv_low.&lt;/P&gt;&lt;P&gt;  APPEND field_value TO dynprovalues.&lt;/P&gt;&lt;P&gt;  CLEAR: lv_low, field_value.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_UPDATE_FIELDS'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname                         = 'ZFI_CUSTOMER_AGING'&lt;/P&gt;&lt;P&gt;      dynumb                         = '1000'&lt;/P&gt;&lt;P&gt;      request                        = ' '&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields                     = dynprovalues.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jul 2011 02:52:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-07-25T02:52:20Z</dc:date>
    <item>
      <title>DYNP_UPDATE_FIELDS Greyed out the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061040#M1612748</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 am using the follwoing code to change  selection screen field BUCKET_4 value based on BUCKET_3 and BUCKET_4 should be greyed out .&lt;/P&gt;&lt;P&gt;It updated the Value but whole selection screen is greyed out.&lt;/P&gt;&lt;P&gt;Please suggest me how to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="4" type="ul"&gt;&lt;P&gt;Read Dynpro Values&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname     = 'ZFI_CUSTOMER_AGING'&lt;/P&gt;&lt;P&gt;      dynumb     = '1000'&lt;/P&gt;&lt;P&gt;      request    = 'A'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields = dynprovalues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: field_value.&lt;/P&gt;&lt;P&gt;  READ TABLE dynprovalues INTO field_value WITH KEY fieldname = 'BUCKET_3'.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    lv_low  = field_value-fieldvalue.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="4" type="ul"&gt;&lt;P&gt;Update Field values&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  CLEAR field_value.&lt;/P&gt;&lt;P&gt;  REFRESH dynprovalues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  field_value-fieldname = 'BUCKET_4-LOW'.&lt;/P&gt;&lt;P&gt;  field_value-fieldvalue =  lv_low.&lt;/P&gt;&lt;P&gt;  APPEND field_value TO dynprovalues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_UPDATE_FIELDS'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     dyname       = 'ZFI_CUSTOMER_AGING'&lt;/P&gt;&lt;P&gt;     dynumb       = '1000'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    REQUEST     = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;P&gt;     dynpfields  = dynprovalues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Enable or Disable summary Report&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;Make 'BUCKET_4' not Editable&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name = 'BUCKET_4-LOW'.&lt;/P&gt;&lt;P&gt;      screen-input = '0'.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2011 08:02:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061040#M1612748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-22T08:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: DYNP_UPDATE_FIELDS Greyed out the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061041#M1612749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any body have idea on this..?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2011 08:26:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061041#M1612749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-22T08:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: DYNP_UPDATE_FIELDS Greyed out the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061042#M1612750</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;if  SCREEN-NAME = 'your bucket' ).&lt;/P&gt;&lt;P&gt;   SCREEN-ACTIVE = 0.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try it,&lt;/P&gt;&lt;P&gt;revert if not solved&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2011 08:34:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061042#M1612750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-22T08:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: DYNP_UPDATE_FIELDS Greyed out the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061043#M1612751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srikanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried but not working, Thanks for ur reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Bhuvana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2011 08:45:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061043#M1612751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-22T08:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: DYNP_UPDATE_FIELDS Greyed out the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061044#M1612752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2011 09:13:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061044#M1612752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-22T09:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: DYNP_UPDATE_FIELDS Greyed out the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061045#M1612753</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;Thanks for ur reply, i tried but not working the issue is occuring because of  FM 'DYNP_UPDATE_FIELDS'.&lt;/P&gt;&lt;P&gt;Not getting what is wrong with the following logic.&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;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Update Field values&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  CLEAR field_value.&lt;/P&gt;&lt;P&gt;  REFRESH dynprovalues.&lt;/P&gt;&lt;P&gt;  field_value-fieldname = 'BUCKET_4-LOW'.&lt;/P&gt;&lt;P&gt;  field_value-fieldvalue =  lv_low.&lt;/P&gt;&lt;P&gt;  APPEND field_value TO dynprovalues.&lt;/P&gt;&lt;P&gt;  CLEAR: lv_low, field_value.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_UPDATE_FIELDS'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname                         = 'ZFI_CUSTOMER_AGING'&lt;/P&gt;&lt;P&gt;      dynumb                         = '1000'&lt;/P&gt;&lt;P&gt;      request                        = ' '&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields                     = dynprovalues.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2011 02:52:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061045#M1612753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-25T02:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: DYNP_UPDATE_FIELDS Greyed out the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061046#M1612754</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 calling DYNP_UPDATE_FIELDS with REQUEST = 'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It shoud solve your issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KR,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Laurent&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2011 10:17:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061046#M1612754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-14T10:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: DYNP_UPDATE_FIELDS Greyed out the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061047#M1612755</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 don't know DYNP_UPDATE_FIELDS, but you can try to use DYNP_VALUES_UPDATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2011 10:23:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061047#M1612755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-14T10:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: DYNP_UPDATE_FIELDS Greyed out the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061048#M1612756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What a helpful answer !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2011 11:54:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061048#M1612756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-14T11:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: DYNP_UPDATE_FIELDS Greyed out the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061049#M1612757</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;After reading value from Bucket_3 , you can try like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REFRESH bucket_4.
  bucket_4-low = lv_low.
  bucket_4-sign = 'I'.
  bucket_4-option = 'EQ'.
  APPEND bucket_4.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2011 12:12:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-greyed-out-the-selection-screen/m-p/8061049#M1612757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-14T12:12:50Z</dc:date>
    </item>
  </channel>
</rss>

