<?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: a question about ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-abap/m-p/3961951#M946412</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Nikhil&lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;but I do not think is a work area declaration, as u mayknow, if we declare a table using tables: bkpf, system will automatically create a work area for this table with the same name...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyway, thank you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jun 2008 06:35:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-10T06:35:28Z</dc:date>
    <item>
      <title>a question about ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-abap/m-p/3961949#M946410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts&lt;/P&gt;&lt;P&gt;when I look into a standard program, I noticed one table declaration as following:&lt;/P&gt;&lt;P&gt;tables: *bkpf&lt;/P&gt;&lt;P&gt;so can anyone tell me the meaning of * ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;many thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2008 06:10:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-abap/m-p/3961949#M946410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-10T06:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: a question about ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-abap/m-p/3961950#M946411</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 this statement would declare work area for BKPF table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i guess this is an obsolete declaration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nikhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2008 06:16:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-abap/m-p/3961950#M946411</guid>
      <dc:creator>nikhil_chitre</dc:creator>
      <dc:date>2008-06-10T06:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: a question about ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-abap/m-p/3961951#M946412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Nikhil&lt;/P&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;but I do not think is a work area declaration, as u mayknow, if we declare a table using tables: bkpf, system will automatically create a work area for this table with the same name...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyway, thank you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2008 06:35:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-abap/m-p/3961951#M946412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-10T06:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: a question about ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-abap/m-p/3961952#M946413</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;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;TABLES *table_wa. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This statement declares an additional table work area *table_wa, whose data type, like that of normal TABLES statements of flat, structured data type table_wa, is copied from the ABAP Dictionary. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The additional table work area can be used like the normal table work area. This applies in particular to obsolete short forms of Open SQL statements. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;The statement TABLES cannot be used in classes. For declaring as many work areas as you want, you can use the addition TYPE to use the data types in the ABAP Dictionary. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Declaration of a normal and additional table work area and its use in obsolete short forms of the SELECT statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: scarr, *scarr. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE * &lt;/P&gt;&lt;P&gt;       FROM scarr &lt;/P&gt;&lt;P&gt;       WHERE carrid = 'LH'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE * &lt;/P&gt;&lt;P&gt;       FROM *scarr &lt;/P&gt;&lt;P&gt;       WHERE carrid = 'UA'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Naresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2008 08:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-abap/m-p/3961952#M946413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-10T08:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: a question about ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-abap/m-p/3961953#M946414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; hi Nikhil&lt;/P&gt;&lt;P&gt;&amp;gt; thanks for your reply.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;STRONG&gt;but I do not think is a work area&lt;/STRONG&gt; declaration, as u mayknow, if we declare a table using tables: bkpf, system will automatically create a work area for this table with the same name...&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; anyway, thank you very much&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are thinking wrong; Nikhil was right!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: mytab, *mytab&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; creates two work areas with structure of "mytab", one called "mytab", the second called *mytab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As others have pointed out, TABLES is not valid in ABAP Objects.  And in the later releases of ABAP it is entirely unneeded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2008 10:13:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-abap/m-p/3961953#M946414</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-06-10T10:13:35Z</dc:date>
    </item>
  </channel>
</rss>

