<?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 Implicit v/s explicit work area in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/implicit-v-s-explicit-work-area/m-p/3367945#M808268</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why do v prefer the use of explicit work area rather than implicit work area?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jan 2008 04:51:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-31T04:51:49Z</dc:date>
    <item>
      <title>Implicit v/s explicit work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implicit-v-s-explicit-work-area/m-p/3367945#M808268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why do v prefer the use of explicit work area rather than implicit work area?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 04:51:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implicit-v-s-explicit-work-area/m-p/3367945#M808268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T04:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: Implicit v/s explicit work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implicit-v-s-explicit-work-area/m-p/3367946#M808269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Explicit work area is when you declare a work area separately from the table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implicit work area is the header line of the table (if the table is declared to have a header line)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For which is the better approach, refer to this thread&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="564801"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 04:55:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implicit-v-s-explicit-work-area/m-p/3367946#M808269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T04:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Implicit v/s explicit work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implicit-v-s-explicit-work-area/m-p/3367947#M808270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; u define internal table with header line then its an implicit work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: itab like mara occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u created work area then its an explicit work area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : itab type standard table of mara,&lt;/P&gt;&lt;P&gt;wa_itab type mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now Implicit work areas are outdated if u use that we will get the epc error. so we will explicit define the work area to avoid that.&lt;/P&gt;&lt;P&gt;for example.&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;it_data type standard table spfli with header line. " implicit work area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Explicit work area. &lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;fs_data type spfli.&lt;/P&gt;&lt;P&gt;data: &lt;/P&gt;&lt;P&gt;it_data like table of fs_spfli.&lt;/P&gt;&lt;P&gt;*Difference in usage&lt;/P&gt;&lt;P&gt;implicit work area.&lt;/P&gt;&lt;P&gt;loop at it_data.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;explicit work area.&lt;/P&gt;&lt;P&gt;loop at it_data into fs_data.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jan 2008 09:21:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implicit-v-s-explicit-work-area/m-p/3367947#M808270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-31T09:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Implicit v/s explicit work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implicit-v-s-explicit-work-area/m-p/3367948#M808271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think it has anything to do with performance, and I'd be surprised if there was a performance difference. It's about writing code that is more future-proof.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Explicit work areas are compatible with ABAP Objects and BADis. When I went on my first SAP training course back in 2003 some asked about tables with header lines. The instructor virtually put his fingers in his ears because he didn't want to teach it as going forwards SAP will phase it out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 22:31:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implicit-v-s-explicit-work-area/m-p/3367948#M808271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T22:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: Implicit v/s explicit work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implicit-v-s-explicit-work-area/m-p/3367949#M808272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mathews,&lt;/P&gt;&lt;P&gt; It does nt have anything to do with the performance. From ECC 6 ownwards many companies are prefrering the Explicit work area concept.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Avi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Feb 2008 02:09:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implicit-v-s-explicit-work-area/m-p/3367949#M808272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-03T02:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Implicit v/s explicit work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implicit-v-s-explicit-work-area/m-p/3367950#M808273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;in the elucidation illustrated by me trough the example did not tell u about the memory.&lt;/P&gt;&lt;P&gt;let me tell u.&lt;/P&gt;&lt;P&gt;actually in the case of implicit workarea memory is wasted.but in the case of explicit work area memory is not wasted.it as runtime kind.&lt;/P&gt;&lt;P&gt;and other greatest advantage is the readability.with implicit workarea the names of those implicitly is confusing.&lt;/P&gt;&lt;P&gt;so in implicit workarea memory is unnecessarily wasted with no use of it actually&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sravani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 04:20:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implicit-v-s-explicit-work-area/m-p/3367950#M808273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T04:20:09Z</dc:date>
    </item>
  </channel>
</rss>

