<?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: Table Control Wizard in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260767#M1016828</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Generally in this kind of scenario, what I do is, Create a internal table with the Z table strucutre and one more field for the selection and use it in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: BEGIN OF ITAB OCCURS 0.
        INCLUDE STRUCTURE MARA.
DATA: SELECTION TYPE CHAR01,
      END   OF ITAB.

DATA: WA_ITAB LIKE ITAB.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Aug 2008 21:28:39 GMT</pubDate>
    <dc:creator>naimesh_patel</dc:creator>
    <dc:date>2008-08-11T21:28:39Z</dc:date>
    <item>
      <title>Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260763#M1016824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I built a table control using the TC wizard, and i cannot figure out how to get the MARK field in my element list which would allow me to select a single row, or multiple rows, what do i need to do to get that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 20:51:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260763#M1016824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T20:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260764#M1016825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest you delete the generated Code and Table control from your program, screen and Screen Flow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, add one more field in your internal table, i.e. SELECTION TYPE CHAR1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Start the table wizard again and&lt;/P&gt;&lt;P&gt;In step "Definition of Columns ",  Don't select the SELECTION field&lt;/P&gt;&lt;P&gt;In the Next step, Check the checkbox "Line Selection Col." in the Line Selectibility frame.&lt;/P&gt;&lt;P&gt;In the Selection Col fld enter SELECTION&lt;/P&gt;&lt;P&gt;and follow the directions for rest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 20:56:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260764#M1016825</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-08-11T20:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260765#M1016826</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;Refer to standard programs "demo_dynpro_tabcont_loop" and "demo_dynpro_tabcont_loop_at".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Visit [Table controls on the screen|http://help.sap.com/saphelp_nw70/helpdata/en/9f/dbac3735c111d1829f0000e829fbfe/content.htm].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select "Line Selection" option while creating the layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srilatha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 21:20:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260765#M1016826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T21:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260766#M1016827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not using an internal table, just the dictionary table.  Is it possible to still have the MARK field there doing it this way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 21:21:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260766#M1016827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T21:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260767#M1016828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Generally in this kind of scenario, what I do is, Create a internal table with the Z table strucutre and one more field for the selection and use it in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: BEGIN OF ITAB OCCURS 0.
        INCLUDE STRUCTURE MARA.
DATA: SELECTION TYPE CHAR01,
      END   OF ITAB.

DATA: WA_ITAB LIKE ITAB.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 21:28:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260767#M1016828</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-08-11T21:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260768#M1016829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;while going through the table control wizard, in the "Table Name" step, i need to select the data from the data dictionary, NOT an internal table and work area.  If i do it this way, going through to the step "Table Control Attributes"  It will not allow me to change the Line Selectability, which i need to do.  what is my problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 18:20:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260768#M1016829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T18:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control Wizard</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260769#M1016830</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;&lt;STRONG&gt;if you are using dictionary table  you can set the mark in the properties of table control. just doble click on the table control when you finish with the wizard and then you will see option for Line Sel -- here you can give none, single or multiple.. after that you can put w/selcolumn in which you can give the sel column name for selection.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kamesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kamesh Bathla on Aug 13, 2008 9:20 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 19:17:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-wizard/m-p/4260769#M1016830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T19:17:07Z</dc:date>
    </item>
  </channel>
</rss>

