<?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 Checkbox Within Table Control At Selection Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502242#M842382</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, there.&lt;/P&gt;&lt;P&gt;In my selection screen (dialog) I'm using a table control which is based on an internal table.&lt;/P&gt;&lt;P&gt;In that internal table I have a simple Yes/No field (declared as type XNULL for example).&lt;/P&gt;&lt;P&gt;The problem is that I want it to be displayed as checkbox on the selection screen's table control and not as a simple string with size = 1 like it is..&lt;/P&gt;&lt;P&gt;I hope it's clear and understood ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Rebeka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Mar 2008 10:12:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-11T10:12:46Z</dc:date>
    <item>
      <title>Checkbox Within Table Control At Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502242#M842382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, there.&lt;/P&gt;&lt;P&gt;In my selection screen (dialog) I'm using a table control which is based on an internal table.&lt;/P&gt;&lt;P&gt;In that internal table I have a simple Yes/No field (declared as type XNULL for example).&lt;/P&gt;&lt;P&gt;The problem is that I want it to be displayed as checkbox on the selection screen's table control and not as a simple string with size = 1 like it is..&lt;/P&gt;&lt;P&gt;I hope it's clear and understood ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Rebeka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 10:12:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502242#M842382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T10:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox Within Table Control At Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502243#M842383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rebeka,&lt;/P&gt;&lt;P&gt;Its very simple,&lt;/P&gt;&lt;P&gt;In that field of table control just drag &amp;amp; drop the  checkbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Screen modules ,&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;If Field = 'YES'.&lt;/P&gt;&lt;P&gt;Checkbox = 'X'.&lt;/P&gt;&lt;P&gt;else .&lt;/P&gt;&lt;P&gt;clear checkbox.&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;Regards,&lt;/P&gt;&lt;P&gt;TAlwinder&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 10:30:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502243#M842383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T10:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox Within Table Control At Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502244#M842384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do you mean by "drag &amp;amp; drop the checkbox" ? From where ??&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Rebeka&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 13:34:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502244#M842384</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T13:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox Within Table Control At Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502245#M842385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just declare the field in the internal table as check box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think this will solve ur problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field type checkbox.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 13:53:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502245#M842385</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T13:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox Within Table Control At Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502246#M842386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In screen painter (se51),&lt;/P&gt;&lt;P&gt; where you are making your table control ,there is a option for checkbox,just drag that checkbox into your field of  table control,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your problem will be resolved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 13:54:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502246#M842386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T13:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox Within Table Control At Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502247#M842387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help, but ....&lt;/P&gt;&lt;P&gt;It's not possible to drug into an existing field cause the table control is based on an internal table.&lt;/P&gt;&lt;P&gt;I can add it near the spesific field, that's all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 14:44:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502247#M842387</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T14:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox Within Table Control At Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502248#M842388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rebeka,&lt;/P&gt;&lt;P&gt;Is it possible to use Table control on selection screens? Are you sure?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 15:22:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502248#M842388</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T15:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox Within Table Control At Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502249#M842389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think just declare the field in the internal table which you want to diplay as check box as checkbox&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 13:15:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-within-table-control-at-selection-screen/m-p/3502249#M842389</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T13:15:36Z</dc:date>
    </item>
  </channel>
</rss>

