<?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: which one is preferable..? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-one-is-preferable/m-p/3252356#M776635</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai friends i have a confusion form long time..what is explicit and what is implicit..?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Jan 2008 05:53:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-08T05:53:42Z</dc:date>
    <item>
      <title>which one is preferable..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-one-is-preferable/m-p/3252353#M776632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;which work area is preferable,explicity or implicity...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 05:49:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-one-is-preferable/m-p/3252353#M776632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T05:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: which one is preferable..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-one-is-preferable/m-p/3252354#M776633</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;  Explicit work area is better.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 05:51:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-one-is-preferable/m-p/3252354#M776633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T05:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: which one is preferable..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-one-is-preferable/m-p/3252355#M776634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sekhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go for explicit work area is preferable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;award points if use full&lt;/STRONG&gt;regards,&lt;/P&gt;&lt;P&gt;vinesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 05:51:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-one-is-preferable/m-p/3252355#M776634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T05:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: which one is preferable..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-one-is-preferable/m-p/3252356#M776635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai friends i have a confusion form long time..what is explicit and what is implicit..?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 05:53:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-one-is-preferable/m-p/3252356#M776635</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T05:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: which one is preferable..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-one-is-preferable/m-p/3252357#M776636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sekhar,&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;   While adding or retrieving records to / from internal table we have to keep the record temporarily. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The area where this record is kept is called as work area for the internal table.  The area must have the same structure as that of internal table. An internal table consists of a body and an optional header line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Header line is a implicit work area for the internal table.  It depends on how the internal table is declared that the itab will have the header line or not. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g. &lt;/P&gt;&lt;P&gt;data: begin of itab occurs 10, &lt;/P&gt;&lt;P&gt;           ab type c, &lt;/P&gt;&lt;P&gt;           cd type i, &lt;/P&gt;&lt;P&gt;        end of itab.  " this table will have the header line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_itab like itab. " explicit work area for itab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab1 like itab occurs 10. " table is without header line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The header line is a field string with the same structure as a row of the body, but it can only hold a single row. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is a buffer used to hold each record before it is added or each record as it is retrieved from the internal table.  It is the default work area for the internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;explicit work area is preferable&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful,&lt;/P&gt;&lt;P&gt;shylaja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 06:00:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-one-is-preferable/m-p/3252357#M776636</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T06:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: which one is preferable..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-one-is-preferable/m-p/3252358#M776637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implicit workareas are those which are declared by the table addition. If you use the asterisk (*) option to read all of the columns of a single database table &amp;lt;dbtab&amp;gt; in the SELECT clause, the INTO clause may be empty. The SELECT statement then writes the data by default into the table work area with the same name &amp;lt;dbtab&amp;gt; as the database table itself. You must declare this table work area using the TABLES statement. Before Release 4.0, this was necessary before you could read data from a database table at all, and was frequently used as an implicit work area. Nowadays, table work areas are still useful as interface work areas, but should no longer be used as the work area in the SELECT statement. Like internal tables without header lines, having different names for the source and target areas makes programs clearer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Explicit workareas are declared by the addition like line of..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: Implicit work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : sflight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: Explicit workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_sflight like line of sflight.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 10:27:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-one-is-preferable/m-p/3252358#M776637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T10:27:51Z</dc:date>
    </item>
  </channel>
</rss>

