<?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: Select All Button in Table Control Wizard in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557327#M1857894</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rodolfo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The process you have described earlier will not be the same if I chose Dictionary Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly try to create Table control for Dictionary Structure. I am having trouble with Table Control which was created with the reference of Dictionary Structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Nooru Bohra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Jul 2014 05:43:11 GMT</pubDate>
    <dc:creator>NooruBohra</dc:creator>
    <dc:date>2014-07-30T05:43:11Z</dc:date>
    <item>
      <title>Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557310#M1857877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a table control using wizard and then checked the option for selecting multiple rows using selection column. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As screenshot contains the table control. The highlighted button is the button to select all the rows of the table control. But when I click save button I am unable to find out whether the select all button was clicked or not. On clicking select all button PAI is not getting triggered. Kindly help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nooru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2014 13:21:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557310#M1857877</guid>
      <dc:creator>NooruBohra</dc:creator>
      <dc:date>2014-07-28T13:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557311#M1857878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nooruddin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using the below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF ok_code = 'SELALL'.&lt;/P&gt;&lt;P&gt; LOOP AT [Int_table] --&amp;gt; populated in table control&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; table-mark = 'X'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MODIFY TABLE.&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use this table in the PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2014 15:01:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557311#M1857878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-28T15:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557312#M1857879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nooruddin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the table control have you checked the multiple selection............if not check your table control ...........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2014 15:08:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557312#M1857879</guid>
      <dc:creator>kabil_g</dc:creator>
      <dc:date>2014-07-28T15:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557313#M1857880</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;This code will not be executed as I stated earlier PAI is not triggered on clicking on the select all button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Nooru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2014 16:32:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557313#M1857880</guid>
      <dc:creator>NooruBohra</dc:creator>
      <dc:date>2014-07-28T16:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557314#M1857881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I have checked the multiple selection checkbox. I am able to select multiple lines but the functionality of default select all button is not proper.&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;P&gt;Nooru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2014 16:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557314#M1857881</guid>
      <dc:creator>NooruBohra</dc:creator>
      <dc:date>2014-07-28T16:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557315#M1857882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kinldy look at the &lt;STRONG&gt;&lt;EM&gt;Image&lt;/EM&gt;&lt;/STRONG&gt; attached&lt;STRONG&gt;&lt;EM&gt;.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The highlighted Button is not working properly. I need help on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Nooru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2014 16:37:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557315#M1857882</guid>
      <dc:creator>NooruBohra</dc:creator>
      <dc:date>2014-07-28T16:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557316#M1857883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;does your table control maintained as below&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/507644" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2014 16:39:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557316#M1857883</guid>
      <dc:creator>kabil_g</dc:creator>
      <dc:date>2014-07-28T16:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557317#M1857884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kabil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes exactly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Nooru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2014 16:48:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557317#M1857884</guid>
      <dc:creator>NooruBohra</dc:creator>
      <dc:date>2014-07-28T16:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557318#M1857885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you modified your internal table in pai event&amp;nbsp; and describe tables statement in pbo................................&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2014 16:51:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557318#M1857885</guid>
      <dc:creator>kabil_g</dc:creator>
      <dc:date>2014-07-28T16:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557319#M1857886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: 'book antiqua', palatino;"&gt;Hi Kabil,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'book antiqua', palatino; font-size: 12pt;"&gt;Yes I have done that. If I manually selects one or more than one rows then I am getting MARK = 'X'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-family: 'book antiqua', palatino; font-size: 12pt;"&gt;But if I use select all button then I am not getting&amp;nbsp; MARK = 'X'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: 'book antiqua', palatino;"&gt;Thanks &amp;amp; Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt; font-family: 'book antiqua', palatino;"&gt;Nooru&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2014 16:56:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557319#M1857886</guid>
      <dc:creator>NooruBohra</dc:creator>
      <dc:date>2014-07-28T16:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557320#M1857887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;Have you created an "user_command" INPUT in PAI?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt; PROCESS AFTER &lt;SPAN class="L0S52"&gt;INPUT&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;MODULE &lt;/SPAN&gt;USER_COMMAND_0100&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;MODULE USER_COMMAND_0100 &lt;SPAN class="L0S52"&gt;INPUT&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;...&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S52"&gt;ENDMODULE&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="L0S31"&gt;" USER_COMMAND_0100&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2014 17:27:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557320#M1857887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-28T17:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557321#M1857888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rodolfo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me clear my requirement.&lt;/P&gt;&lt;P&gt;I have a excel contains details of business partners.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once I upload the data in SAP I use table control to display the data and when user selects a row and presses the save button the selected Business Partner is getting created in SAP using BDC for transaction BP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well till this point I don't have any issues. if user selects multiple lines &lt;STRONG&gt;"Manually"&lt;/STRONG&gt; then also the program works fine and selected Business Partners are getting created in SAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But as I stated earlier if I use select all button that and press the SAVE button then all records are getting highlighted as if they all are selected but the &lt;STRONG&gt;MARK&lt;/STRONG&gt; field is having value &lt;STRONG&gt;SPACE&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it will help you to understand the probelm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Nooru Bohra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2014 17:35:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557321#M1857888</guid>
      <dc:creator>NooruBohra</dc:creator>
      <dc:date>2014-07-28T17:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557322#M1857889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Noor,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looks like your you have to put a /h on the select all button and catch your sy-ucomm value.&lt;/P&gt;&lt;P&gt;Once done follow the same instructions of Rodolfo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12.222222328186035px;"&gt;IF ok_code = &amp;lt;&amp;gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12.222222328186035px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12.222222328186035px;"&gt;Any user action will definitely trigger PAI event.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12.222222328186035px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12.222222328186035px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12.222222328186035px;"&gt;Kannan&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jul 2014 20:46:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557322#M1857889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-28T20:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557323#M1857890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kannan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I said earlier no PAI Event is getting Triggered. I have also tried /H and then pressed the select all button, no code execution takes place. It worked just like Radio Button without Function code won't trigger any event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I assign Function Code to the Button that I highlighted in the image.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nooru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 10:02:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557323#M1857890</guid>
      <dc:creator>NooruBohra</dc:creator>
      <dc:date>2014-07-29T10:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557324#M1857891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Noor,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I figured out a way to solve your issue!&lt;/P&gt;&lt;P&gt;Try doing the following steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your TOP INCLUDE, create the following type for your internal table and structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/508272" height="122" width="290" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that, create a TC using Wizard Tool as shown below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/508273" height="104" width="305" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/508274" height="262" width="569" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*** DO NOT SELECT MARK FIELD ***&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/508275" height="139" width="480" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you will put your [mark] field declared in your internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/508276" height="227" width="498" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/508310" height="118" width="347" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will create the following output, with a default "Select All" button (that will have a ok_code related to it and will trigger the PAI event).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/508311" height="227" width="364" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After using "Select All" and choosing "Save" button, we get the following values in Internal Table used for Table Control&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/508312" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it solves your issue!&amp;nbsp; &lt;SPAN __jive_emoticon_name="cool" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/978/images/emoticons/cool.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 12:30:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557324#M1857891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-29T12:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557325#M1857892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rodolfo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would be an additional button. Kinldy look into the image that I have shared in Question. The highlighted button is not working but it is displaying all records as selected. Either Tell me a way to remove it or a way to make it work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also I would like to inform you about the option of Line selection checkbox under line selectability, I am getting that option disabled. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Nooruddin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 13:18:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557325#M1857892</guid>
      <dc:creator>NooruBohra</dc:creator>
      <dc:date>2014-07-29T13:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557326#M1857893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Noor,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/508363" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Creating the way I posted above (I know, it's an "extra button" to select all fields but it works) you will have the other "Select All" button at the top left disabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still could not find another better way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2014 13:32:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557326#M1857893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-29T13:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557327#M1857894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rodolfo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The process you have described earlier will not be the same if I chose Dictionary Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly try to create Table control for Dictionary Structure. I am having trouble with Table Control which was created with the reference of Dictionary Structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Nooru Bohra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 05:43:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557327#M1857894</guid>
      <dc:creator>NooruBohra</dc:creator>
      <dc:date>2014-07-30T05:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557328#M1857895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nooruddin&lt;/P&gt;&lt;P&gt;Did you find any solution to this problem?&lt;/P&gt;&lt;P&gt;Reagrds&lt;/P&gt;&lt;P&gt;Sagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Dec 2015 13:34:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557328#M1857895</guid>
      <dc:creator>former_member193187</dc:creator>
      <dc:date>2015-12-23T13:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Select All Button in Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557329#M1857896</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;you will be needing an internal table to hold the data even if you make Table control using dictionary reference.&lt;/P&gt;&lt;P&gt;you can declare structure like this in global declaration and declare an internal table of declared structure like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of tc_tab.&lt;/P&gt;&lt;P&gt;include structure &amp;lt;dictionary structure&amp;gt;.&lt;/P&gt;&lt;P&gt;data: mark&amp;nbsp; type xfled.&lt;/P&gt;&lt;P&gt;types: end of tc_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_tctab type table of tc_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then follow the guidelines of Mr. Rodolfo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Dec 2015 14:30:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-all-button-in-table-control-wizard/m-p/10557329#M1857896</guid>
      <dc:creator>Chintu6august</dc:creator>
      <dc:date>2015-12-23T14:30:17Z</dc:date>
    </item>
  </channel>
</rss>

