<?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: screen painter issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636988#M283977</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;Here is what you can do to make all your fields display-only:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign all the fields to a group (say ABC), using the screen-painter (You will find this in the properties of each field). Then, use the following code in your PBO to set the fields to display only:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Sep 2006 06:47:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-28T06:47:11Z</dc:date>
    <item>
      <title>screen painter issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636987#M283976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear friends&lt;/P&gt;&lt;P&gt;I want screen fields to be disable when I click on display button and it become enabled when I click on it again.&lt;/P&gt;&lt;P&gt;For example in any transaction we have options display and change when we click on display next screen shows records in a display mode  we cant make changes in that , I also want same thing , is there is any Function Module for the Same.&lt;/P&gt;&lt;P&gt;Its very urgent .&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 06:39:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636987#M283976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T06:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636988#M283977</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;Here is what you can do to make all your fields display-only:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign all the fields to a group (say ABC), using the screen-painter (You will find this in the properties of each field). Then, use the following code in your PBO to set the fields to display only:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 06:47:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636988#M283977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T06:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636989#M283978</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;you can do this by using a LOOP ENDLOOP on screen in PBO module. you can set a flag for the mode to be enable or disable for the button .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"if button is clicked do this".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF mode_flag = 0.&lt;/P&gt;&lt;P&gt;   mode_flag = 1.&lt;/P&gt;&lt;P&gt;ELSEIF mode_flag = 1.&lt;/P&gt;&lt;P&gt;   mode_flag = 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PBO do like this. assign all the fields to a field group name like 'GRP' so all will be disabled at once.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN PBO module&lt;/P&gt;&lt;P&gt;IF mode_flag = 1.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt; if screen-group1 = 'GRP'.&lt;/P&gt;&lt;P&gt;    screen-input = 1.&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;P&gt;elseif mode_flag = 0.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt; if screen-group1 = 'GRP'.&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;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 06:48:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636989#M283978</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-09-28T06:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636990#M283979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    use below logic&lt;/P&gt;&lt;P&gt;    clear ok-code.&lt;/P&gt;&lt;P&gt;    ok-code = sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   case ok-code&lt;/P&gt;&lt;P&gt;   when 'DISPLAY'&lt;/P&gt;&lt;P&gt;     loop at screen.&lt;/P&gt;&lt;P&gt;   if screen-name = 'P' &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;endloop.&lt;/P&gt;&lt;P&gt;else. &lt;/P&gt;&lt;P&gt; loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'P' &lt;/P&gt;&lt;P&gt;screen-input = 1.&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;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 07:16:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636990#M283979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T07:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636991#M283980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinod,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is how u can achieve the disable mode-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;When 'DISPLAY'.&lt;/P&gt;&lt;P&gt; LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'G1'.&lt;/P&gt;&lt;P&gt;        screen-active = 1.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;        screen-output = 1.&lt;/P&gt;&lt;P&gt;        screen-invisible = 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;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps u.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Seema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 07:29:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636991#M283980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T07:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636992#M283981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudha &lt;/P&gt;&lt;P&gt;Thanks for reply.&lt;/P&gt;&lt;P&gt;I Tried this but its not working.is there any other option or any function module. i tried one function module RS_TOOLS_ACCESS it is somewhat Ok but Still having problem.&lt;/P&gt;&lt;P&gt;waiting for reply.&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 09:18:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636992#M283981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T09:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636993#M283982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please post your code. As far as I know, the screen-input method works really well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sudha Mohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 09:20:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636993#M283982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T09:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636994#M283983</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;Thanks for reply.&lt;/P&gt;&lt;P&gt;I Tried this but its not working.is there any other option or any function module. i tried one function module RS_TOOLS_ACCESS it is somewhat Ok but Still having problem.&lt;/P&gt;&lt;P&gt;waiting for reply.&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 09:20:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636994#M283983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T09:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636995#M283984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinod,&lt;/P&gt;&lt;P&gt;Did u tried this code??&lt;/P&gt;&lt;P&gt;This will work for sure infact its wrkin 4 me u need to assign the screen fields with a group like G1 and have 2 create a module in the PBO of the screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;When 'DISPLAY'.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'G1'.&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;screen-output = 1.&lt;/P&gt;&lt;P&gt;screen-invisible = 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;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps u.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Seema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 09:23:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636995#M283984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T09:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636996#M283985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;program given below is test program plz go thrugh it &amp;amp; plz make correction where required&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM ZTEMP .&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  STATUS_0001  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE STATUS_0001 OUTPUT.&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'T1'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; SET TITLEBAR 'xxx'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " STATUS_0001  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  USER_COMMAND_0001  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0001 INPUT.&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;WHEN 'SHOW'.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'PC1'.&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;screen-output = 1.&lt;/P&gt;&lt;P&gt;screen-invisible = 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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'BACK'.&lt;/P&gt;&lt;P&gt;SET SCREEN 0.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_0001  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regds vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 10:26:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636996#M283985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T10:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636997#M283986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vinod,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code will work perfectly if you put it in the &amp;lt;b&amp;gt;PBO&amp;lt;/b&amp;gt;. Remember that this is a screen change and has to be done in the PBO.&lt;/P&gt;&lt;P&gt;Set a flag in the PAI, for the ucomm SHOW. If the flag is X, have the PBO execute the LOOP AT SCREEN call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 10:47:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636997#M283986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T10:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636998#M283987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code is working properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks again for replay.&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;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Sep 2006 11:05:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter-issue/m-p/1636998#M283987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-28T11:05:31Z</dc:date>
    </item>
  </channel>
</rss>

