<?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: modify screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen/m-p/2539688#M576944</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;report a.&lt;/P&gt;&lt;P&gt;tables: kna1,vbak,vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title a.&lt;/P&gt;&lt;P&gt;select-options:&lt;/P&gt;&lt;P&gt;cno for kna1-kunnr modif id abc,&lt;/P&gt;&lt;P&gt;sno for vbak-vbeln modif id bcd,&lt;/P&gt;&lt;P&gt;date for vbak-erdat modif id cde,&lt;/P&gt;&lt;P&gt;sarea for vbak-vkgrp modif id def,&lt;/P&gt;&lt;P&gt;mete for vbap-matnr modif id efg.&lt;/P&gt;&lt;P&gt;selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;  if cno is initial.&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt; if screen-group1 = 'BCD' or screen-group1 = 'CDE' &lt;/P&gt;&lt;P&gt;     or screen-group1 = 'DEF'  or screen-group1 = 'EFG' .&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;    screen-input = '0'.&lt;/P&gt;&lt;P&gt;    clear: sno,date,sarea,mete.&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;Reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jul 2007 10:27:59 GMT</pubDate>
    <dc:creator>kesavadas_thekkillath</dc:creator>
    <dc:date>2007-07-23T10:27:59Z</dc:date>
    <item>
      <title>modify screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen/m-p/2539684#M576940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guru's,&lt;/P&gt;&lt;P&gt;i have select-options like this.&lt;/P&gt;&lt;P&gt;cno for kna1-kunnr modif id abc,&lt;/P&gt;&lt;P&gt;                 sno for vbak-vbeln modif id bcd,&lt;/P&gt;&lt;P&gt;                 date for vbak-erdat modif id cde,&lt;/P&gt;&lt;P&gt;                 sarea for vbak-vkgrp modif id def,&lt;/P&gt;&lt;P&gt;                 mete for vbap-matnr modif id efg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what i want is after entering input values in cno only remaining options will be enabled. otherwise these will be in disable mode.&lt;/P&gt;&lt;P&gt;help me.&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:47:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen/m-p/2539684#M576940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: modify screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen/m-p/2539685#M576941</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 LOOP AT SCREEN. in PBO or SELECTION-SCREEN OUTPUT events.&lt;/P&gt;&lt;P&gt;Reward if useful!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:48:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen/m-p/2539685#M576941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: modify screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen/m-p/2539686#M576942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AT SLECTION-SCREEN OUTPUT,&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF SCREEN-GROUP = 'ABC'.&lt;/P&gt;&lt;P&gt;    SCREEN-ACTIVE = '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;Message was edited by: &lt;/P&gt;&lt;P&gt;        Vara Prasad Kunathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:50:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen/m-p/2539686#M576942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: modify screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen/m-p/2539687#M576943</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;Put in loop for CNO in Selection Screen at the Value request. IF user entered anything then only enable the other fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kinjal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 09:51:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen/m-p/2539687#M576943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T09:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: modify screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen/m-p/2539688#M576944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;report a.&lt;/P&gt;&lt;P&gt;tables: kna1,vbak,vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title a.&lt;/P&gt;&lt;P&gt;select-options:&lt;/P&gt;&lt;P&gt;cno for kna1-kunnr modif id abc,&lt;/P&gt;&lt;P&gt;sno for vbak-vbeln modif id bcd,&lt;/P&gt;&lt;P&gt;date for vbak-erdat modif id cde,&lt;/P&gt;&lt;P&gt;sarea for vbak-vkgrp modif id def,&lt;/P&gt;&lt;P&gt;mete for vbap-matnr modif id efg.&lt;/P&gt;&lt;P&gt;selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;  if cno is initial.&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt; if screen-group1 = 'BCD' or screen-group1 = 'CDE' &lt;/P&gt;&lt;P&gt;     or screen-group1 = 'DEF'  or screen-group1 = 'EFG' .&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;    screen-input = '0'.&lt;/P&gt;&lt;P&gt;    clear: sno,date,sarea,mete.&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;Reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 10:27:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-screen/m-p/2539688#M576944</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2007-07-23T10:27:59Z</dc:date>
    </item>
  </channel>
</rss>

