<?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: problem in tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975799#M70839</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;Please let us know the error message you r getting while u try to activate the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anjali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Jul 2005 05:08:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-07-25T05:08:18Z</dc:date>
    <item>
      <title>problem in tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975794#M70834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello&lt;/P&gt;&lt;P&gt;i want to know how to check if table is active or not(i mean if table have data or not)in code?&lt;/P&gt;&lt;P&gt;in SE11 i see the table declared but in SE16 the table is not active because there is no data&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jul 2005 11:59:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975794#M70834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-24T11:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: problem in tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975795#M70835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;in SE11 i see the table declared but in SE16&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i guess you are comparing tables and structures?&lt;/P&gt;&lt;P&gt;Structure is a structure it does not hold data so you wont see them from se16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check out the link for Data dictionary FAQ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sappoint.com/faq/faqabdic.pdf" target="test_blank"&gt;http://www.sappoint.com/faq/faqabdic.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jul 2005 12:20:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975795#M70835</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-07-24T12:20:51Z</dc:date>
    </item>
    <item>
      <title>Re: problem in tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975796#M70836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to know if there is data in a particular table programmically,  you could just do a select against it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

Select Single * from t001 into xt001.
if sy-subrc  = 0.
write:/ 'Yep, there is data'.
else.
write:/ 'Nop, there is no data'.
endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't know if that select statement will pass a syntax check or not(no r/3 available right now),  but you get the idea.&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>Sun, 24 Jul 2005 15:47:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975796#M70836</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-24T15:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: problem in tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975797#M70837</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;I think you created table but not activated.Just check the status of the table in SE11 whether it is 'Active'.Sometimes if you copied the table the status will be New.You have to activate them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to see whether the table has data,you can see it in SE11 itself.Just go to table of contents and execute.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2005 04:28:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975797#M70837</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-07-25T04:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: problem in tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975798#M70838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In se11, if u have created a structure, then see that whetehr u have referred &amp;lt;b&amp;gt;all the reference table and field&amp;lt;/b&amp;gt;, if u click on the currencyfields tab if u see some blank lines in the edit mode. U have to fill those details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When u try to activate it,it will give some error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the table is not active then it wont accept the table name while u define that in code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2005 04:34:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975798#M70838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-25T04:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: problem in tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975799#M70839</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;Please let us know the error message you r getting while u try to activate the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anjali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2005 05:08:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975799#M70839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-25T05:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: problem in tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975800#M70840</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;Guess you've mixed up the terms..:-). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A table (or any workbench object in SAP , for that matter) when created has the status &amp;lt;b&amp;gt;new&amp;lt;/b&amp;gt;. When you have saved it at least once, it has the status &amp;lt;b&amp;gt;inactive&amp;lt;/b&amp;gt;. when you have activated it, the status is &amp;lt;b&amp;gt;active&amp;lt;/b&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only those tables in SE11 that have the status &amp;lt;b&amp;gt;active&amp;lt;/b&amp;gt; can be populated with data. But if a table is active, it doesn't necessarily mean that it has got some data. It may just be that nobody has updated this table. Or the entries that were in the table have been deleted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2005 05:17:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-tables/m-p/975800#M70840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-25T05:17:20Z</dc:date>
    </item>
  </channel>
</rss>

