<?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 Table control question in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-question/m-p/1457508#M216199</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am planning to write a program related to table control for updating/inserting/deleting a record into internal table or database table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it must that the internal table or database should have a field called 'mark' with C type and length 1? For example, I see in the database table Mara, there is no field called 'mark' at all. Does that mean we can't insert/update/delete a record from Mara? Definitely not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please make it clear on this concept? Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Jun 2006 16:50:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-28T16:50:46Z</dc:date>
    <item>
      <title>Table control question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-question/m-p/1457508#M216199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am planning to write a program related to table control for updating/inserting/deleting a record into internal table or database table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it must that the internal table or database should have a field called 'mark' with C type and length 1? For example, I see in the database table Mara, there is no field called 'mark' at all. Does that mean we can't insert/update/delete a record from Mara? Definitely not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please make it clear on this concept? Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 16:50:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-question/m-p/1457508#M216199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T16:50:46Z</dc:date>
    </item>
    <item>
      <title>Re: Table control question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-question/m-p/1457509#M216200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, this field doesn't have to exist in the DB table, just in your Internal table.   This MARK field is just a way for the program to know what lines of the table contol have been selected.  That's it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: begin of iztab occurs 0.
data: mark(1) type c.
      include structure ztab.
data: end of iztab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 16:53:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-question/m-p/1457509#M216200</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-28T16:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: Table control question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-question/m-p/1457510#M216201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Nuren,&lt;/P&gt;&lt;P&gt; the mark that you are talking is the table control field not database field and you cannot find the same in the database so you need not bother about mark field to be present in the database&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 16:55:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-question/m-p/1457510#M216201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T16:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: Table control question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-question/m-p/1457511#M216202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi nuren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the screen painter if you are specifying w/selcolumn for the table control, then u need to declare a mark TYPE c in the internal table, then u can write like&lt;/P&gt;&lt;P&gt;in pai.&lt;/P&gt;&lt;P&gt;IF v_check(is the name of w/selcolumn in the screen) = 'X'.&lt;/P&gt;&lt;P&gt;        itab-chk =  'X'.&lt;/P&gt;&lt;P&gt;        MODIFY itab index tc1-current_line.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        CLEAR itab-chk .&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jun 2006 16:57:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-question/m-p/1457511#M216202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-28T16:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: Table control question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-question/m-p/1457512#M216203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how can i add table control columns dynamically?&lt;/P&gt;&lt;P&gt;hari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 11:25:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-question/m-p/1457512#M216203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T11:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: Table control question</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-question/m-p/1457513#M216204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi krishen,&lt;/P&gt;&lt;P&gt;no it absolutely not neccessary.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jan 2007 11:29:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-question/m-p/1457513#M216204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-24T11:29:14Z</dc:date>
    </item>
  </channel>
</rss>

