<?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 Display Mode - Module Pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-mode-module-pool/m-p/4242519#M1012663</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need help in Module Pool,&lt;/P&gt;&lt;P&gt;when button click want to display screen in Display Mode only.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jul 2008 06:19:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-31T06:19:28Z</dc:date>
    <item>
      <title>Display Mode - Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-mode-module-pool/m-p/4242519#M1012663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need help in Module Pool,&lt;/P&gt;&lt;P&gt;when button click want to display screen in Display Mode only.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 06:19:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-mode-module-pool/m-p/4242519#M1012663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T06:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: Display Mode - Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-mode-module-pool/m-p/4242520#M1012664</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 program for Tcode &lt;STRONG&gt;TZ50&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 06:27:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-mode-module-pool/m-p/4242520#M1012664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T06:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: Display Mode - Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-mode-module-pool/m-p/4242521#M1012665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In PBO you have to write the code for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First capture the action (ok_code) for button you click .based on that you have to modify the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using the LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you need to write this code in PBO module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if all the fields you want to display then you can do this&lt;/P&gt;&lt;P&gt;or else with the help of screen name or screen group1 ,2,3,4&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT SCREEN .

screen-input = 0.
 modify screen.

ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 06:39:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-mode-module-pool/m-p/4242521#M1012665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T06:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: Display Mode - Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-mode-module-pool/m-p/4242522#M1012666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sharavan, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you want to achieve the Toggle Display Functionality. To achieve this you have perform this following steps: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Define the names Properly for each of the individual Screen Elements. Like for Button you can do BTN_01.. etc etc... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. In the PBO Module define a Module like MODULE screen_settings. In this you will run the following code: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT SCREEN. 
IF SCREEN-NAME = 'BTN_01'. 
        SCREEN-INPUT = 0. 
        MODIFY SCREEN. 
ENDIF. 
ENDLOOP. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For a group of BTNs or Text Elements you can form a GROUP and can Enable and Disable all at once. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. The Next step is the handling of the Table Control.In the PBO event there you will have the LOOPing the Table control. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There inside the loop place a Module and enable and disable each and individual rows. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You must keep a central Instance from where you can check whether you want the screen elements in DISPLAY/CHANGE mode. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Samantak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:15:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-mode-module-pool/m-p/4242522#M1012666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T07:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: Display Mode - Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-mode-module-pool/m-p/4242523#M1012667</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 you are calling a screen when button is clicked then write the screen modification code in the PBO event of the called screen... If you want to modify the current screen place the screen modification logic in the PAI event&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case ok_code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when &amp;lt;Button&amp;gt;&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;   screen-input = 0.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;padma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 09:03:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-mode-module-pool/m-p/4242523#M1012667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T09:03:11Z</dc:date>
    </item>
  </channel>
</rss>

