<?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: display checkbox based on its value. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293791#M500674</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U need to &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;award points for all  the useful replies&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;, and also u nees to &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;mark it as Answered if ur problem is solved&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 May 2007 09:15:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-18T09:15:35Z</dc:date>
    <item>
      <title>display checkbox based on its value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293785#M500668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two main screens in a dialog programme. In the first screen there are many checkboxes. I have to display those checkboxes in 2nd screen that are selected in first screen, and remaining must be invisible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This can be done easily using IF condition within LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;but since there are many checkboxes , is there any other way to do it.&lt;/P&gt;&lt;P&gt;In SCREEN structure, we can get the name of the component, likewise can we get the value of component.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 10:32:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293785#M500668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T10:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: display checkbox based on its value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293786#M500669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In both of the screens use the same variables for the checkboxes. Then no need of modifying the screen table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the first screen Using the check boxes the variables will get some values, if u use the same variables for the checkboxes in the second screen then automitically those checkboxes will get modified as the checkboxes in the first screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;Award if useful&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 10:38:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293786#M500669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T10:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: display checkbox based on its value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293787#M500670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please try the following logic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STEP1: Use a naming convention to name the checkboxes in a particular way, like, &lt;/P&gt;&lt;P&gt;starting with a pattern CHECK_&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STEP2: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at screen where screen-value = space.
    if screen-name CS 'CHECK_'  " you can use the offset logic also
          screen-invisible = 1.
          modify screen.
    endif.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Sajan Joseph.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 11:02:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293787#M500670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T11:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: display checkbox based on its value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293788#M500671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but there is no component called VALUE in SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The line:      loop at screen where screen-value = space.        is showing error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 11:19:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293788#M500671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T11:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: display checkbox based on its value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293789#M500672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the pbo of the second screen &lt;/P&gt;&lt;P&gt;if screen-name = 'name of checkbox' .&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if mark = 'X'.&lt;/P&gt;&lt;P&gt;screen-invisible = 'X'.&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;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this code.in place of name of screen enter the name you have given in design time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;award if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vikaas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 11:44:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293789#M500672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T11:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: display checkbox based on its value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293790#M500673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go for the same variables for both the check boxes in the two screens, then there is no need of going for modifying the screen, as i told in my previous replies,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Hope this is useful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this useful?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 11:48:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293790#M500673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T11:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: display checkbox based on its value.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293791#M500674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U need to &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;award points for all  the useful replies&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;, and also u nees to &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;mark it as Answered if ur problem is solved&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 09:15:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-checkbox-based-on-its-value/m-p/2293791#M500674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T09:15:35Z</dc:date>
    </item>
  </channel>
</rss>

