<?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: What's the difference? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696055#M624033</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;  here the problem is that itab does not have work area so its telling like that to correct his..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA itab TYPE TABLE OF spfli.&lt;/P&gt;&lt;P&gt;DATA wa TYPE LINE OF itab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SELECT SINGLE *&lt;/P&gt;&lt;P&gt;  INTO   table itab&lt;/P&gt;&lt;P&gt;   FROM   spfli&lt;/P&gt;&lt;P&gt;  WHERE  carrid EQ 'LH'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LOOP AT itab INTO wa.&lt;/P&gt;&lt;P&gt;  WRITE: / wa-cityfrom, wa-cityto.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE *&lt;/P&gt;&lt;P&gt;  INTO   wa&lt;/P&gt;&lt;P&gt;   FROM   spfli&lt;/P&gt;&lt;P&gt;  WHERE  carrid EQ 'LH'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;  WRITE: / wa-ciyfrom, wa-cityto.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Aug 2007 19:43:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-23T19:43:34Z</dc:date>
    <item>
      <title>What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696049#M624027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What's the difference between&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA itab TYPE spfli.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA itab TYPE STANDARD TABLE OF spfli?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 19:33:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696049#M624027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T19:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696050#M624028</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;The first one will create structure itab and the second one will create internal table itab of type spfli.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;David.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 19:35:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696050#M624028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T19:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696051#M624029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dumb question:  what's the difference?  I'm royally confused.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 19:39:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696051#M624029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T19:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696052#M624030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A structure is a varible which can hold only one record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An internal table will hold more than one records.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 19:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696052#M624030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T19:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696053#M624031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In a structure you can basically store just one record or value. In a table you can have multiple records. Hope it helpds you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;David.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 19:41:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696053#M624031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T19:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696054#M624032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA itab TYPE TABLE OF spfli.
DATA wa TYPE LINE OF itab.

SELECT SINGLE *
  INTO   CORRESPONDING FIELDS OF itab
  FROM   spfli
  WHERE  carrid EQ 'LH'.

LOOP AT itab INTO wa.
  WRITE: / wa-cityfrom, wa-cityto.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, why does this code generate an "'ITAB' is not the type of an internal table" error?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 19:41:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696054#M624032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T19:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696055#M624033</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;  here the problem is that itab does not have work area so its telling like that to correct his..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA itab TYPE TABLE OF spfli.&lt;/P&gt;&lt;P&gt;DATA wa TYPE LINE OF itab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SELECT SINGLE *&lt;/P&gt;&lt;P&gt;  INTO   table itab&lt;/P&gt;&lt;P&gt;   FROM   spfli&lt;/P&gt;&lt;P&gt;  WHERE  carrid EQ 'LH'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LOOP AT itab INTO wa.&lt;/P&gt;&lt;P&gt;  WRITE: / wa-cityfrom, wa-cityto.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE *&lt;/P&gt;&lt;P&gt;  INTO   wa&lt;/P&gt;&lt;P&gt;   FROM   spfli&lt;/P&gt;&lt;P&gt;  WHERE  carrid EQ 'LH'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;  WRITE: / wa-ciyfrom, wa-cityto.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 19:43:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696055#M624033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T19:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696056#M624034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA itab TYPE TABLE OF spfli.
DATA wa LIKE LINE OF itab.

SELECT *
  INTO   CORRESPONDING FIELDS OF &amp;lt;b&amp;gt;TABLE &amp;lt;/b&amp;gt;itab
  FROM   spfli
  WHERE  carrid EQ 'LH'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why does this statement NOT work when I omit the keyword "TABLE"?  Also, if I remove "CORRESPONDING FIELDS OF TABLE" altogether and just have &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;INTO itab&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; why do I get an error that says "You cannot use an internal table as a work area.".  What exactly is a "work area"?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 19:50:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696056#M624034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T19:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696057#M624035</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;When you do a select * you are basically getting all the records in the table spfli. If you omit the work table then you are trying to get those values in a structure. Work area is also a structure and not table. If you want to do selection without the keyword 'Table' use the following query&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data wa_itab TYPE spfli.&lt;/P&gt;&lt;P&gt;Select single * From spfli&lt;/P&gt;&lt;P&gt;                      into wa_itab&lt;/P&gt;&lt;P&gt;                     WHERE  carrid EQ 'LH'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 19:56:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696057#M624035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T19:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696058#M624036</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;    internal table is like a table to start with.. but when ever i say i want to put some data into or read data from the internal table i have to have a strucure/header line /work area into which i put the data record by record and insert into the internal table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; work area is like a temporary storage to put data or read data from a table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; you dont need to have work area for a internal table whn using in select with a table option.. but when you loop after this...select its like read record by record but read to where is where ur work area comes into picture...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one more variation is below.. but its old one and is not supported in OOPS abap&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*-- this will declare a internal table with header line...&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;DATA itab TYPE TABLE OF spfli &amp;lt;b&amp;gt;with header line&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;DATA wa LIKE LINE OF itab.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; *-- here itab i am refereing is the work area of the internal table&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;  INTO   CORRESPONDING FIELDS OF itab&lt;/P&gt;&lt;P&gt;  FROM   spfli&lt;/P&gt;&lt;P&gt;  WHERE  carrid EQ 'LH'.&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;write : itab-id , itab-name.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;*-- here the table is considered coz i use table statement.&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;  INTO   CORRESPONDING FIELDS OF table  itab&lt;/P&gt;&lt;P&gt;  FROM   spfli&lt;/P&gt;&lt;P&gt;  WHERE  carrid EQ 'LH'.&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;*-- here the name of the internal table and work area is same and with this loop record by record is read into the work area itab ..&lt;/P&gt;&lt;P&gt;looop at itab.&lt;/P&gt;&lt;P&gt;write: itab-id.&lt;/P&gt;&lt;P&gt;endloop&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 19:57:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696058#M624036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T19:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696059#M624037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I'll take a stab at it,  First  lets understand that ITAB is an interna table, it has rows or a body,  WA is a variable which will will use to read a line of the internal table into.  So WA is a varaible which has the structure as a line of the ITAB.  ITAB can have multple rows, but all look like SPFLI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when you are selecting data into your ITAB, you must use the sytax,  INTO TABLE ITAB or INTO CORRESPONDING FIELDS OF TABLE ITAB.  Because ITAB is an internal table.  If you where selecting only row from SPFLI, you could put that data into WA, but you would need to specify that you are selecing SINGLE, and you want to put the result INTO CORRESPONDING FIELDS OF WA, or INTO WA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did I confuse your more?&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>Thu, 23 Aug 2007 20:00:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696059#M624037</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-08-23T20:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696060#M624038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys.  Got it now!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 20:03:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696060#M624038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T20:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696061#M624039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Simple answer is Workarea is a structure with only one record and table is with multiple records. When you say table with work area it is nothing but table with header.&lt;/P&gt;&lt;P&gt;When you write SELECT SINGLE * you give a structure in the destination&lt;/P&gt;&lt;P&gt;when you say SELECT *  which could have more than 1 entry your destination is a table. &lt;/P&gt;&lt;P&gt;But when you take out INTO CORRESPONDING FIELDS OF TABLE ..you are trying to pass multiple values to single workarea, that's why it gives error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Kriss&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 20:05:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696061#M624039</guid>
      <dc:creator>former_member192429</dc:creator>
      <dc:date>2007-08-23T20:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696062#M624040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to everyone for your answers.  They've all been helpful.  Before I abandon this thread though there's one more question if you would be so kind.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I replaced "LIKE LINE OF itab" with "TYPE LINE OF itab" out of curiosity (mainly because I don't understand the difference) and I get a message saying "ITAB is not the type of an internal table".  I find this confusing because the line above it specifically declares &amp;lt;b&amp;gt;itab&amp;lt;/b&amp;gt; as an internal table.  What am I missing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA itab TYPE TABLE OF spfli.
DATA wa TYPE LINE OF itab.

SELECT carrid connid cityfrom cityto 
       FROM spfli 
       INTO CORRESPONDING FIELDS OF TABLE itab. 

LOOP AT itab INTO wa.
  WRITE: / wa-carrid, wa-connid, wa-cityfrom, wa-cityto. 
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 20:51:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696062#M624040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-23T20:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696063#M624041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LIKE refers to other declared objects (internal tables, variables, workareas, and so) and takes from it the type it has. "LIKE LINE OF itab" declares a workarea that has the same structure as a line of itab. Thus internally this statement will look at itab definition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE refers to existing types (either in your program or in data dictionary). "TYPE LINE OF itab" doesn't work because itab is not an internal table type, but just an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you get it.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2007 21:23:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696063#M624041</guid>
      <dc:creator>alejandro_bindi</dc:creator>
      <dc:date>2007-08-23T21:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: What's the difference?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696064#M624042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it.  Seems like a silly question in retrospect since it's so obvious now but ABAP is quite different than the world I came from (C#).  Many thanks for your assistance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Aug 2007 14:23:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference/m-p/2696064#M624042</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-24T14:23:48Z</dc:date>
    </item>
  </channel>
</rss>

