<?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: why changes can not have effect? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683983#M887080</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can not control the texts using these loop at screen statements.&lt;/P&gt;&lt;P&gt;You jst have to default the values.&lt;/P&gt;&lt;P&gt;Text1= 'This is text1'.&lt;/P&gt;&lt;P&gt;Text2= 'This is text2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can control to display Text1 or Text2 accordingly to ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Apr 2008 03:04:45 GMT</pubDate>
    <dc:creator>gopi_narendra</dc:creator>
    <dc:date>2008-04-17T03:04:45Z</dc:date>
    <item>
      <title>why changes can not have effect?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683976#M887073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi `&lt;/P&gt;&lt;P&gt;i just want to change the name of the text field, which sets in screen painter, however, there is no effect.&lt;/P&gt;&lt;P&gt;Below is my program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i made it in PBO .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE status_9000 OUTPUT.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN .&lt;/P&gt;&lt;P&gt;    IF screen-name = 'TEXT1'. &lt;/P&gt;&lt;P&gt;      text1 = 'this is text1'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    IF screen-name = 'TEXT2'.&lt;/P&gt;&lt;P&gt;      text2 = 'this is text2'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " STATUS_9000  OUTPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 02:18:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683976#M887073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T02:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: why changes can not have effect?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683977#M887074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Try using MODIFY statement after loop or values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 02:42:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683977#M887074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T02:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: why changes can not have effect?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683978#M887075</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;MODULE status_9000 OUTPUT.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN .&lt;/P&gt;&lt;P&gt;   IF screen-name = 'TEXT1'. &lt;/P&gt;&lt;P&gt;      text1 = 'this is text1'.&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;MODIFY SCREEN.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt;  IF screen-name = 'TEXT2'.&lt;/P&gt;&lt;P&gt;       text2 = 'this is text2'.&lt;/P&gt;&lt;P&gt;       &lt;STRONG&gt;MODIFY SCREEN.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDMODULE. " STATUS_9000 OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. reward if useful.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 02:50:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683978#M887075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T02:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: why changes can not have effect?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683979#M887076</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....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE status_9000 OUTPUT.
LOOP AT SCREEN .
IF screen-name = 'TEXT1'. 
text1 = 'this is text1'.
Modify screen.
ENDIF.
IF screen-name = 'TEXT2'.
text2 = 'this is text2'.
Modify screen.
ENDIF.
ENDLOOP.
ENDMODULE. " STATUS_9000 OUTPUT
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;AK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 02:51:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683979#M887076</guid>
      <dc:creator>ak_upadhyay</dc:creator>
      <dc:date>2008-04-17T02:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: why changes can not have effect?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683980#M887077</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;'loop at screen' will effect on screen fields like active, intensified, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will not efect on field values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can initialize that in initilization event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;text1 = 'this is text1'.&lt;/P&gt;&lt;P&gt;text2 = 'this is text2'.&lt;/P&gt;&lt;P&gt;&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, 17 Apr 2008 02:53:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683980#M887077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T02:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: why changes can not have effect?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683981#M887078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi  guys`&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is still no effect , when i use the MODIFY statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any other helpful aid .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 02:55:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683981#M887078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T02:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: why changes can not have effect?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683982#M887079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;both text1 and text2  are not the field included in internal table SCREEN. they are control made in screen painter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 02:58:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683982#M887079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T02:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: why changes can not have effect?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683983#M887080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can not control the texts using these loop at screen statements.&lt;/P&gt;&lt;P&gt;You jst have to default the values.&lt;/P&gt;&lt;P&gt;Text1= 'This is text1'.&lt;/P&gt;&lt;P&gt;Text2= 'This is text2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can control to display Text1 or Text2 accordingly to ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 03:04:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683983#M887080</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2008-04-17T03:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: why changes can not have effect?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683984#M887081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do u mean that i put this default statement &lt;/P&gt;&lt;P&gt;'"Text1 = 'this ..' Text2 = 'this is ...' "&lt;/P&gt;&lt;P&gt;in the PBO without using LOOP and ENDLOOP with the SCREEN , however, there is still no effect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you explain clearly`?&lt;/P&gt;&lt;P&gt;thx again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 03:17:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683984#M887081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-17T03:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: why changes can not have effect?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683985#M887082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, i meant to default them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when do u need Text1 &amp;amp; Text2 on the screen, Do you need both of them at a time??&lt;/P&gt;&lt;P&gt;Or do u need either Text1 or Text2 on the screen (based on condition(s) )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if &amp;lt;cond1&amp;gt;.
  loop at screen.
    if screen-name = 'Text1'.
      screen-input = 0.
      clear text1.
      modify screen.
    endif.
  endloop.
elseif &amp;lt;cond2&amp;gt;.
  loop at screen.
    if screen-name = 'Text2'.
      screen-input = 0.
      clear text2.
      modify screen.
    endif.
  endloop.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2008 03:38:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-changes-can-not-have-effect/m-p/3683985#M887082</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2008-04-17T03:38:36Z</dc:date>
    </item>
  </channel>
</rss>

