<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/5534858#M1264339</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;Becase your declaration &lt;/P&gt;&lt;P&gt; When you declare &lt;/P&gt;&lt;P&gt;DATA : it_experience TYPE ty_experience &lt;U&gt;OCCURS 0 WITH HEADER LINE&lt;/U&gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please change to &lt;/P&gt;&lt;P&gt;DATA : it_experience &lt;U&gt;TYPE TABLE OF&lt;/U&gt; ty_experience  &lt;U&gt;WITH HEADER LINE&lt;/U&gt;.&lt;/P&gt;&lt;P&gt;then try to create table control again&lt;/P&gt;&lt;P&gt;&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;Sayan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Apr 2009 10:34:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-24T10:34:47Z</dc:date>
    <item>
      <title>Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/5534855#M1264336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have declared a structure using the type statement.&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF ty_experience,&lt;/P&gt;&lt;P&gt;        empno           TYPE ztable1-empno,&lt;/P&gt;&lt;P&gt;       organisation    TYPE ztable1-organisation,&lt;/P&gt;&lt;P&gt;       from_date       TYPE ztable1-from_date,&lt;/P&gt;&lt;P&gt;       to_date         TYPE ztable1-to_date,&lt;/P&gt;&lt;P&gt;        END OF ty_experience.&lt;/P&gt;&lt;P&gt;Then declared the internal table.&lt;/P&gt;&lt;P&gt;DATA : it_experience TYPE ty_experience OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;When I am creating the table contol using wizard using the internal table(it_experience) I am getting the error"Specify the work area of the table or a table with a header line".Though I am giving the internal table with header leine still I am getting the error message.Kindly suggest the solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 09:32:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/5534855#M1264336</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T09:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/5534856#M1264337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can not use internal table there&lt;/P&gt;&lt;P&gt;use should use the souce table&lt;/P&gt;&lt;P&gt;eg in your case&lt;/P&gt;&lt;P&gt;you are using ztable right&lt;/P&gt;&lt;P&gt;so provide that&lt;/P&gt;&lt;P&gt;internal table is just a intermediate between screen and table&lt;/P&gt;&lt;P&gt;and you can't pass that as souce.&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;s.janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 09:35:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/5534856#M1264337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T09:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/5534857#M1264338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then Why do we have the option of selecting the internal table in the wizard.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 09:38:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/5534857#M1264338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T09:38:59Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/5534858#M1264339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;Becase your declaration &lt;/P&gt;&lt;P&gt; When you declare &lt;/P&gt;&lt;P&gt;DATA : it_experience TYPE ty_experience &lt;U&gt;OCCURS 0 WITH HEADER LINE&lt;/U&gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please change to &lt;/P&gt;&lt;P&gt;DATA : it_experience &lt;U&gt;TYPE TABLE OF&lt;/U&gt; ty_experience  &lt;U&gt;WITH HEADER LINE&lt;/U&gt;.&lt;/P&gt;&lt;P&gt;then try to create table control again&lt;/P&gt;&lt;P&gt;&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;Sayan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 10:34:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/5534858#M1264339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T10:34:47Z</dc:date>
    </item>
  </channel>
</rss>

