<?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: TABLES statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958874#M945888</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;&lt;STRONG&gt;DATA: is used to define any variables. These variables can be internal tables or fields (char, integer , Num)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TABLES: is used to define a database table which are going to be used in the program.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Rgds,&lt;/P&gt;&lt;P&gt;S.Barani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 May 2008 08:57:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-29T08:57:55Z</dc:date>
    <item>
      <title>TABLES statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958869#M945883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a report please tell me what the below statements will do an what is the use of this two statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 08:50:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958869#M945883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-29T08:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958870#M945884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PRESS F1 AND USE THE SAP HELP FIRST. ITS A SIMPLE THING TO DO!!!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 08:52:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958870#M945884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-29T08:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958871#M945885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: is used to define any variables. These variables can be internal tables or fields (char, integer....)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: is used to define a database table that is used in the program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For instance:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: it_bkpf LIKE bkpf OCCURS 0. --&amp;gt; an internal table that save the information of the bkpf &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables: bkpf. --&amp;gt; define the use of the table bkpf in the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 08:54:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958871#M945885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-29T08:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958872#M945886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ajay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA statement is used to declare a variable with some type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;DATA: sum type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here sum is the variable and 'i' is the integer type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;coming to TABLES statement ........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will give u the structure of that table.&lt;/P&gt;&lt;P&gt;u can use that declared table any where in ur program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to find answers in google or sap help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;kk.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 08:56:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958872#M945886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-29T08:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958873#M945887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;It doesn't do anything but declaring Data dictionary tables so you can work with them in your programs or internal objects (DATA) such as internal tables, work areas, variables and so..&lt;/P&gt;&lt;P&gt;I suggest you to start learning abap from the begining.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 08:56:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958873#M945887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-29T08:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958874#M945888</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;&lt;STRONG&gt;DATA: is used to define any variables. These variables can be internal tables or fields (char, integer , Num)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TABLES: is used to define a database table which are going to be used in the program.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Rgds,&lt;/P&gt;&lt;P&gt;S.Barani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 08:57:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958874#M945888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-29T08:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958875#M945889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tbales statement creates a structure, having same name as the dictionary object .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES  MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This satment now creates one structure MARA for me in  my program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 09:00:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958875#M945889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-29T09:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958876#M945890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here is an example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : ZRPM_ITEM_SUM.&lt;/P&gt;&lt;P&gt;         &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;------ DECLARATION OF INTERNAL TABLE --------- *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA :  ITAB1 TYPE TABLE OF ZRPM_ITEM_SUM,&lt;/P&gt;&lt;P&gt;        ITAB2 TYPE TABLE OF TY_ITAB2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : WA_ITAB TYPE  ZRPM_ITEM_SUM OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so as we see,&lt;/P&gt;&lt;P&gt;data statement is used to declare any variable or create internal table etc.&lt;/P&gt;&lt;P&gt;while in ur report,the table being used in written under REPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Reward points if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Malvika Sharma on May 29, 2008 11:04 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Malvika Sharma on May 29, 2008 11:06 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 09:03:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958876#M945890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-29T09:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958877#M945891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look at [sap help online-search|http://help.sap.com/search/sap_trex.jsp]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 09:12:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958877#M945891</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-05-29T09:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: TABLES statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958878#M945892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the use of the tables statement..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this statement create the buffer of the data base table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose in a program there may be a chance to call a database for about 4 times......if u donot use this statement it will hit the database  4 times but it is not good for the performance...if u use the tables statement it will creates the buffer and this will fetch the data form the buffer 4 times and it will hit the data base 1 time for filling the buffer it is good for performance..&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;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 May 2008 09:13:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-statement/m-p/3958878#M945892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-29T09:13:57Z</dc:date>
    </item>
  </channel>
</rss>

