<?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: regarding grey out fields in module pool program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601400#M2011025</link>
    <description>&lt;P&gt;Create a variable to keep the fact that refresh pushbutton was clicked (Set it in PAI when this pushbutton is pressed, Clear it when exit oushbutton is pressed, or within a previous dynpro logic, initialization event, etc.)&lt;/P&gt;&lt;P&gt;In the PBO use this field in two LOOP AT SCREEN statements do deactivate input on required fields, one in a module of the main screen logic (header fields), one in a module executed within the LOOP, WITH CONTROL related to the table control (item fields)&lt;/P&gt;</description>
    <pubDate>Thu, 16 Jun 2022 10:09:47 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2022-06-16T10:09:47Z</dc:date>
    <item>
      <title>regarding grey out fields in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601392#M2011017</link>
      <description>&lt;P&gt;hi team,&lt;/P&gt;
  &lt;P&gt;there are two tables ekko and ekpo .and there are two push button 1)exit 2)refresh when user click on refresh button&lt;/P&gt;
  &lt;P&gt;every fields should be grey out fields.1)using ekko in structure table 2)table control in ekpo.&lt;/P&gt;
  &lt;P&gt;would u please give me a solution for this one&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 05:36:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601392#M2011017</guid>
      <dc:creator>former_member661105</dc:creator>
      <dc:date>2022-06-16T05:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: regarding grey out fields in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601393#M2011018</link>
      <description>&lt;P&gt;Did you search for LOOP AT SCREEN inactive field dynpro ... ?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 05:40:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601393#M2011018</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2022-06-16T05:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: regarding grey out fields in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601394#M2011019</link>
      <description>&lt;P&gt;sir i have done loop at screen but don't how define the fields in the loop at screen sir.please resolve solution&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 05:56:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601394#M2011019</guid>
      <dc:creator>former_member661105</dc:creator>
      <dc:date>2022-06-16T05:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: regarding grey out fields in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601395#M2011020</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Please &lt;/P&gt;&lt;P&gt;1. paste your sreenshot of fields - which you want to gray out&lt;/P&gt;&lt;P&gt;2. Send the code of PBO &lt;/P&gt;&lt;P&gt;3. Send the Fieldnames you defined in screens ( for which you want to grayout)&lt;/P&gt;&lt;P&gt;We shall help you further&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 05:59:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601395#M2011020</guid>
      <dc:creator>venkateswaran_k</dc:creator>
      <dc:date>2022-06-16T05:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: regarding grey out fields in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601396#M2011021</link>
      <description>&lt;P&gt;Hi Alazhu,&lt;/P&gt;&lt;P&gt;You can gray out field using screen-input = 0. whatever field name you want to gray out write the name in screen-name.&lt;/P&gt;&lt;P&gt;I have shared sample code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;case sy-ucomm.&lt;BR /&gt;when 'REFRESH'.&lt;BR /&gt; LOOP AT SCREEN.&lt;BR /&gt;  if screen-name = 'EKKO-EBELN' or screen-name = 'EKKO-BUKRS'.&lt;BR /&gt;    screen-input = 0.&lt;BR /&gt;    MODIFY SCREEN.&lt;BR /&gt;  endif.&lt;BR /&gt; ENDLOOP.&lt;BR /&gt;endcase.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 16 Jun 2022 06:19:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601396#M2011021</guid>
      <dc:creator>anujawani242683</dc:creator>
      <dc:date>2022-06-16T06:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: regarding grey out fields in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601397#M2011022</link>
      <description>&lt;P&gt;LOOP AT SCREEN won't work if you don't place it in the PBO of the exact same screen where the fields are located.&lt;/P&gt;&lt;P&gt;To know the screen field name, position your cursor in the field, press F1 and display "technical info". If it doesn't work, just debug &amp;gt; click "replace tool" of any tool &amp;gt; choose tool "screen Analysis", you'll see the exact structure of the displayed screens, including the contents of the "screen" system table of any part of the screen.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 07:05:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601397#M2011022</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-06-16T07:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: regarding grey out fields in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601398#M2011023</link>
      <description>&lt;P&gt;MAM,&lt;/P&gt;&lt;P&gt;I HAVE DO FOR THE ITEM TABLE ALSO IN TABLE CONTROL TWO INPUT FIELDS SUCH AS KWMNG AND NETPR FIELDS SHOULD COMES AS GREY OUT WHILE CLICK ON REFRESH BUTTON,CAN U SUGGEST THE SOLUTION.&lt;/P&gt;&lt;P&gt;IT IS WORKING FOR HEADER TABLE MAM,AND I NEED FOR ITEM TABLE ALSO.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 07:47:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601398#M2011023</guid>
      <dc:creator>former_member661105</dc:creator>
      <dc:date>2022-06-16T07:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: regarding grey out fields in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601399#M2011024</link>
      <description>&lt;P&gt;Hi Alazhu,&lt;/P&gt;&lt;P&gt;Same needs to be done for item table. I just tried sample one. I gray out 1st field of table control using below code.&lt;/P&gt;&lt;P&gt;Please write code in PBO. You just need to change the table name here and their corresponding field name.&lt;/P&gt;&lt;P&gt;  loop AT SCREEN.&lt;BR /&gt;    if screen-name = 'EKPO-EBELN'.&lt;BR /&gt;      screen-input = 0.&lt;BR /&gt;      MODIFY SCREEN.&lt;BR /&gt;    endif.&lt;BR /&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/2059472-image.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 08:47:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601399#M2011024</guid>
      <dc:creator>anujawani242683</dc:creator>
      <dc:date>2022-06-16T08:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: regarding grey out fields in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601400#M2011025</link>
      <description>&lt;P&gt;Create a variable to keep the fact that refresh pushbutton was clicked (Set it in PAI when this pushbutton is pressed, Clear it when exit oushbutton is pressed, or within a previous dynpro logic, initialization event, etc.)&lt;/P&gt;&lt;P&gt;In the PBO use this field in two LOOP AT SCREEN statements do deactivate input on required fields, one in a module of the main screen logic (header fields), one in a module executed within the LOOP, WITH CONTROL related to the table control (item fields)&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jun 2022 10:09:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-grey-out-fields-in-module-pool-program/m-p/12601400#M2011025</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2022-06-16T10:09:47Z</dc:date>
    </item>
  </channel>
</rss>

