<?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: module pool development in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826192#M1129352</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Can you tell me one thing...suppose I have 10 line item in our module pool, I select first radio-button&lt;/P&gt;&lt;P&gt;for first line item.Any time I can select only one line item.Now I want when I select first radio button for first line item then the second radiobuton(2nd column) should be visible and all rest 9 line item for 2nd radio button should be invisble.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Dec 2008 07:17:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-03T07:17:14Z</dc:date>
    <item>
      <title>module pool development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826186#M1129346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;   I have made module pool in which there are two radio button in two column name r1 and r2.&lt;/P&gt;&lt;P&gt;The first radio button is visible and the other one is invisible.I want when I clicked in the first&lt;/P&gt;&lt;P&gt;radio button then the otherone should  also be visible.Please give me solution.&lt;/P&gt;&lt;P&gt;   Or I want the above scenario. when I clicked on r1 then r2 should be visible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 12:23:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826186#M1129346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-02T12:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: module pool development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826187#M1129347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi rakesh ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write this code in the PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF R1 = 'X'.
loop at screen.
if screen-name = 'R2'.
screen-active = 1.
else.
screen-active = 0.
endif.
modify screen.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 12:27:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826187#M1129347</guid>
      <dc:creator>Mohamed_Mukhtar</dc:creator>
      <dc:date>2008-12-02T12:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: module pool development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826188#M1129348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;parameters: r1 as radiobutton group g1 modif id scr,&lt;/P&gt;&lt;P&gt;                  r2 as radiobutton group g1 modif id apr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the PBO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if  r1 = ' X' and screen-group1 = 'APR'.&lt;/P&gt;&lt;P&gt;     screen-input = 0.&lt;/P&gt;&lt;P&gt;     modify screen.&lt;/P&gt;&lt;P&gt; elseif r2 = 'X' and screen-group1 = 'SCR'.&lt;/P&gt;&lt;P&gt;     screen-input = 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;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 12:27:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826188#M1129348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-02T12:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: module pool development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826189#M1129349</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;In the PBO of screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'R2'.&lt;/P&gt;&lt;P&gt;screen-invisible = '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;and in the PAI of Screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if R1 = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'R2'.&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;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 13:25:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826189#M1129349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-02T13:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: module pool development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826190#M1129350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, logic is very good.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2008 06:51:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826190#M1129350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-03T06:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: module pool development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826191#M1129351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Can you tell me one thing...suppose I have 10 line item in our module pool, I select first radio-button&lt;/P&gt;&lt;P&gt;for first line item.Any time I can select only one line item.Now I want when I select first radio button for first line item then the second radiobuton(2nd column) should be visible and all rest 9 line item for 2nd radio button should be invisble.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2008 07:16:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826191#M1129351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-03T07:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: module pool development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826192#M1129352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Can you tell me one thing...suppose I have 10 line item in our module pool, I select first radio-button&lt;/P&gt;&lt;P&gt;for first line item.Any time I can select only one line item.Now I want when I select first radio button for first line item then the second radiobuton(2nd column) should be visible and all rest 9 line item for 2nd radio button should be invisble.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2008 07:17:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826192#M1129352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-03T07:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: module pool development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826193#M1129353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Can you tell me one thing...suppose I have 10 line item in our module pool, I select first radio-button&lt;/P&gt;&lt;P&gt;for first line item.Any time I can select only one line item.Now I want when I select first radio button for first line item then the second radiobuton(2nd column) should be visible and all rest 9 line item for 2nd radio button should be invisble.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Dec 2008 07:17:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-development/m-p/4826193#M1129353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-03T07:17:31Z</dc:date>
    </item>
  </channel>
</rss>

