<?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 Check Boxes on Module Pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-module-pool/m-p/5454440#M1250064</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement says I need to fetch some company codes and for each company code I have to display a check box on the module pool screen, allowing user to select few among them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how can I do it? as we cannot be sure how many company codes i will be fetching using a query, I believe the check boxes have to be displayed dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how to display them dynamically along with the text ( company code text) beside it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Apr 2009 12:47:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-03T12:47:56Z</dc:date>
    <item>
      <title>Check Boxes on Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-module-pool/m-p/5454440#M1250064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement says I need to fetch some company codes and for each company code I have to display a check box on the module pool screen, allowing user to select few among them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how can I do it? as we cannot be sure how many company codes i will be fetching using a query, I believe the check boxes have to be displayed dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how to display them dynamically along with the text ( company code text) beside it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2009 12:47:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-module-pool/m-p/5454440#M1250064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-03T12:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Check Boxes on Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-module-pool/m-p/5454441#M1250065</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;try using table control in module pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;R K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2009 12:50:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-module-pool/m-p/5454441#M1250065</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-03T12:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: Check Boxes on Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-module-pool/m-p/5454442#M1250066</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;U need to use a table control in order to show the compnay codes extracted and the first fields of tc should be a checkbox, but u can use the marker field instead of the checkbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2009 12:54:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-module-pool/m-p/5454442#M1250066</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-03T12:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Check Boxes on Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-module-pool/m-p/5454443#M1250067</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;once your data is filled in internal table&lt;/P&gt;&lt;P&gt;take another field as checkbox in the internal table.&lt;/P&gt;&lt;P&gt;use table control and pass  the table to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u shall get the first col with checkboxes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;types:
     begin of type_tab.
       checkbox type c,                   " Field for checkbox
       field1  type c,
       field2  type i,
     end of typetab.

data:
   fs_tab type type_tab.

data:
  t_tab like standard table of fs_tab.

select query.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2009 12:54:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-module-pool/m-p/5454443#M1250067</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-03T12:54:41Z</dc:date>
    </item>
  </channel>
</rss>

