<?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 is the work area in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-work-area/m-p/1926219#M384269</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this,&lt;/P&gt;&lt;P&gt;WORKAREA is a structure that can hold only one record at a time. It is a collection of fields. We use workarea as we cannot directly read from a table. In order to interact with a table we need workarea. When a Select Statement is executed on a table then the first record is read and put into the header of the table and from there put into the header or the workarea(of the same structure as that of the table)of the internal table and then transferred top the body of the internal table or directly displayed from the workarea.&lt;/P&gt;&lt;P&gt;Each row in a table is a record and each column is a field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/profile?userid=3486494" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/profile?userid=3486494&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Feb 2007 13:55:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-08T13:55:04Z</dc:date>
    <item>
      <title>what is the work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-work-area/m-p/1926216#M384266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;plz give me the answar of the question &lt;/P&gt;&lt;P&gt;what is the work area&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 13:49:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-work-area/m-p/1926216#M384266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T13:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: what is the work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-work-area/m-p/1926217#M384267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you are in serious need of training if you have to ask that question. The work area is the temporary space in SAP memory that you are working as an ABAPer and is for the duration that your program is running, you also define that area and space as you define internal tables etc....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        David Lawlor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 13:52:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-work-area/m-p/1926217#M384267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T13:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: what is the work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-work-area/m-p/1926218#M384268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A work area is nothing more than a variable in your program which usually has some strucure.   This work area holds data at runtime.   A lot of times a work area is used to read lines of an internal table into.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Loop at itab into wa.
  write:/ wa-fld1, wa_fld2.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&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, 08 Feb 2007 13:54:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-work-area/m-p/1926218#M384268</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-02-08T13:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: what is the work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-work-area/m-p/1926219#M384269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this,&lt;/P&gt;&lt;P&gt;WORKAREA is a structure that can hold only one record at a time. It is a collection of fields. We use workarea as we cannot directly read from a table. In order to interact with a table we need workarea. When a Select Statement is executed on a table then the first record is read and put into the header of the table and from there put into the header or the workarea(of the same structure as that of the table)of the internal table and then transferred top the body of the internal table or directly displayed from the workarea.&lt;/P&gt;&lt;P&gt;Each row in a table is a record and each column is a field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/profile?userid=3486494" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/profile?userid=3486494&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 13:55:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-work-area/m-p/1926219#M384269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T13:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: what is the work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-work-area/m-p/1926220#M384270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       The structure of internal table is , it consists of a work area and body. If u want to add or retrieve the records from the database ,then what happens is, the first record(which u want to add/retrieve) comes to the work area then it is sent to the body area (this happens only when the next record is retrieved) .&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       For example if 'n' records are to be retrieved from the database,after retrieving the 'n'th record the last record in the body area will be equal to the record present in the work area(i.e.; when any record is called then it enters the workarea by overwriting any existing record and the existing record is sent to the body area).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If found useful ,reward suitable points&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>Thu, 08 Feb 2007 14:20:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-the-work-area/m-p/1926220#M384270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T14:20:08Z</dc:date>
    </item>
  </channel>
</rss>

