<?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 loop at screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/3777425#M908892</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello gurus , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;Hw to modify the screen in modulepool (loop at screen ) , i have a button in my screen , when I wl predssed that a new window wl come and main screen will enlarge , and when I pressed collapse , new wl remove from main screen , just like FINT tcode (intesest calculation) . If some have this idea , plz healp .&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I m waiting for your valuable answer .&lt;/STRONG&gt;&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;P&gt;Joy .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Apr 2008 04:50:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-25T04:50:20Z</dc:date>
    <item>
      <title>loop at screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/3777425#M908892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello gurus , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;Hw to modify the screen in modulepool (loop at screen ) , i have a button in my screen , when I wl predssed that a new window wl come and main screen will enlarge , and when I pressed collapse , new wl remove from main screen , just like FINT tcode (intesest calculation) . If some have this idea , plz healp .&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I m waiting for your valuable answer .&lt;/STRONG&gt;&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;P&gt;Joy .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 04:50:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/3777425#M908892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T04:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: loop at screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/3777426#M908893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;you can assign your fields on the screen to different groups based on your requirements and then do like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SCREEN-GROUP1 = 'G1'.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF SCREEN-GROUP1 = 'G2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        SCREEN-ACTIVE = 1.&lt;/P&gt;&lt;P&gt;        SCREEN-INPUT = 1.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these change in attributes will totally based on your requirements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 04:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/3777426#M908893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T04:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: loop at screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/3777427#M908894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;hello friend ,&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           &lt;STRONG&gt;I m getting you , but prob is that in m in module pool , in that What i have to do for new window , I have created one screen like 2 and made that one screen group sc1 . but after putting your code through screen group(sc1) its not working , hw to do plz hhelp .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;P&gt;Joy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 05:13:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/3777427#M908894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T05:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: loop at screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/3777428#M908895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have to do like belkow except the code i have written before&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just save your first screen ok_code in a different temp.  variable .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then call your second screen when required using call screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now put condition  on the val  of your temp  ok_code and  change the attributes  of your new screen fields using the code like before&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful in all threads&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 05:21:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/3777428#M908895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T05:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: loop at screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/3777429#M908896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hello friend ,  I m getting your code but prob is that screen group is not showing , I mean to say , My current screen is 101 in that I have a button in pai of screen I have put your code inside the button ok code ,  I have created second screen 0002 (with screen group scg1) that one I have to call in the current screen or  hw to design that one , dynamic modification is req , when I press the button screen wll enlarge with new window .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'CM1' .&lt;/P&gt;&lt;P&gt;      LOOP AT SCREEN .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IF screen-group1 = 'SCG1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          screen-active = 1.&lt;/P&gt;&lt;P&gt;          screen-input = 1.&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;&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDLOOP .&lt;/P&gt;&lt;P&gt;is it ok ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Joy .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 05:55:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/3777429#M908896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T05:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: loop at screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/3777430#M908897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;Sorry for late reply as i was busy and if this time i m getting you right then you need to call the screen dynamically on pressing a button on the current screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So for this first u need to call that screen using call screen right then  only you can change its attributes so &lt;/P&gt;&lt;P&gt;do like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create your second screen with invisible option checked in attribute window  &lt;/P&gt;&lt;P&gt;then call your second screen &lt;/P&gt;&lt;P&gt;and on pressing the button change its attribute by unchecking invisible&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;Ashish Paliwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 07:40:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/loop-at-screen/m-p/3777430#M908897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T07:40:41Z</dc:date>
    </item>
  </channel>
</rss>

