<?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: about reports in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-reports/m-p/2548025#M579779</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At selection-screen.&lt;/P&gt;&lt;P&gt;if rad1 = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;case screen-name.&lt;/P&gt;&lt;P&gt;when 'RAD2'.&lt;/P&gt;&lt;P&gt;Screen-invisible = 1. "if u dont want to display the field&lt;/P&gt;&lt;P&gt;SCREEN-Active = 1 ."it will be disabled.u can see but cannot give inputs.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;elseif rad2 = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;case screen-name.&lt;/P&gt;&lt;P&gt;when 'RAD1'.&lt;/P&gt;&lt;P&gt;Screen-invisible = 1. "if u dont want to display the field&lt;/P&gt;&lt;P&gt;SCREEN-Active = 1 ."it will be disabled.u can see but cannot give inputs.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jul 2007 10:15:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-19T10:15:04Z</dc:date>
    <item>
      <title>about reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-reports/m-p/2548023#M579777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;during out put if we have two radio buttons fields.if we select one radio button the other should hide(means radio button field). which event we have to use and where we have to write the logic&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 10:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-reports/m-p/2548023#M579777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T10:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: about reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-reports/m-p/2548024#M579778</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;&lt;/P&gt;&lt;P&gt;try with AT SELECTION SCREEN on OUTPUT event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION SCREEN on OUTPUT. r u can  use AT SELECTION-SCREEN event also&lt;/P&gt;&lt;P&gt;     if  r1 = 'X'.&lt;/P&gt;&lt;P&gt;        loop at screen.&lt;/P&gt;&lt;P&gt;             screen-name = 'r2'.&lt;/P&gt;&lt;P&gt;             screen-active = 0.&lt;/P&gt;&lt;P&gt;             modify screen.&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;             screen-name = 'r2'.&lt;/P&gt;&lt;P&gt;             screen-active = 0.&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;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Suresh.A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 10:11:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-reports/m-p/2548024#M579778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T10:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: about reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-reports/m-p/2548025#M579779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At selection-screen.&lt;/P&gt;&lt;P&gt;if rad1 = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;case screen-name.&lt;/P&gt;&lt;P&gt;when 'RAD2'.&lt;/P&gt;&lt;P&gt;Screen-invisible = 1. "if u dont want to display the field&lt;/P&gt;&lt;P&gt;SCREEN-Active = 1 ."it will be disabled.u can see but cannot give inputs.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;elseif rad2 = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;case screen-name.&lt;/P&gt;&lt;P&gt;when 'RAD1'.&lt;/P&gt;&lt;P&gt;Screen-invisible = 1. "if u dont want to display the field&lt;/P&gt;&lt;P&gt;SCREEN-Active = 1 ."it will be disabled.u can see but cannot give inputs.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jul 2007 10:15:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-reports/m-p/2548025#M579779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-19T10:15:04Z</dc:date>
    </item>
  </channel>
</rss>

