<?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: work areas in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/4596754#M1083756</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dhanjaya,&lt;/P&gt;&lt;P&gt;WorkArea is just a structure which holds only one record of the respective structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WorkArea is used when we are accessing or modifying the internal table. in that case first of all the Internal table data comes up on the workarea and then we display it in the output.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: begin of ty_mara,
                matnr type matnr,
             end of ty_mara.
*Declaration of the internal table.
DATA: itab type standard table of ty_mara.
* Declartion of the work area.
DATA: wa_itab type ty_mara.

 loop at itab into wa_itab,
         write:/ wa_itab-matnr.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Above example WA_ITAB is the workarea which is used to display the data. we are fetching the internal table data into the worarea i.e WA_ITAB and then we display it in the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chidanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 25 Oct 2008 14:48:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-25T14:48:03Z</dc:date>
    <item>
      <title>work areas</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/4596753#M1083755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please give me detailed explanation regarding WORK AREA  in internal tables, hoe to define the work area.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Oct 2008 12:55:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/4596753#M1083755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-25T12:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: work areas</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/4596754#M1083756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dhanjaya,&lt;/P&gt;&lt;P&gt;WorkArea is just a structure which holds only one record of the respective structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WorkArea is used when we are accessing or modifying the internal table. in that case first of all the Internal table data comes up on the workarea and then we display it in the output.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: begin of ty_mara,
                matnr type matnr,
             end of ty_mara.
*Declaration of the internal table.
DATA: itab type standard table of ty_mara.
* Declartion of the work area.
DATA: wa_itab type ty_mara.

 loop at itab into wa_itab,
         write:/ wa_itab-matnr.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Above example WA_ITAB is the workarea which is used to display the data. we are fetching the internal table data into the worarea i.e WA_ITAB and then we display it in the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Chidanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Oct 2008 14:48:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/4596754#M1083756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-25T14:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: work areas</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/4596755#M1083757</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can imagine, you are not the first person to use work areas. For this reason, you can conclude that there will already be a lot of information here on SDN, on help.sap.com and google in general about it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All you need to do is a little search.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very usefull is the F1 key (on your keyboard) for the ABAP keyword documentation - try type "WA" into the ABAP editor, place your cursor on it an hit F1, that should be your first choice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, please search before asking questions. In most cases we delete such questions...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ps: The forum rules are at the top of each of the forum pages.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Oct 2008 16:17:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/4596755#M1083757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-25T16:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: work areas</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/4596756#M1083758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Dhana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hearty Welcome to SDN.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;As this is your first post i dont want to discourage you from using this valuable site. First let me tell you one thing spend some time with SDN site completely go through each link and findout in which way it can help you. Please try to avoid quiz type of question or interview type of questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My suggestions is click on forums and in the middle of the screen you can see one search box put your query with some hint words and click go believe me you will get lots of results with in a second. &lt;/P&gt;&lt;P&gt;Hope you follow from now.&lt;/P&gt;&lt;P&gt;And follow JU suggestions you will get your answers.&lt;/P&gt;&lt;P&gt;Happy Posting&lt;/P&gt;&lt;P&gt;Cheers!!&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Oct 2008 17:32:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/4596756#M1083758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-25T17:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: work areas</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/4596757#M1083759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types: begin of ty_mara,&lt;/P&gt;&lt;P&gt;          matnr type matnr,   &lt;/P&gt;&lt;P&gt;          meins type meins,  &lt;/P&gt;&lt;P&gt;          Ernam type ernam,&lt;/P&gt;&lt;P&gt;          ersda type ersda,&lt;/P&gt;&lt;P&gt;          end of ty_mara&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********&lt;STRONG&gt;work area declaration&lt;/STRONG&gt;***********&lt;/P&gt;&lt;P&gt;data: wa_mara type ty_mara,  -&lt;/P&gt;&lt;HR originaltext="-------" /&gt;&lt;P&gt;&amp;gt; work area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_mara like table of wa_mara----&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; body&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr meins ersda from mara into table it_mara.&lt;/P&gt;&lt;P&gt;loop at it_mara into wa_mara.&lt;/P&gt;&lt;P&gt; write:/ wa_mara-matnr,&lt;/P&gt;&lt;P&gt;          wa_mara-meins,&lt;/P&gt;&lt;P&gt;          wa_mara-ernam,&lt;/P&gt;&lt;P&gt;          wa_mara-ersda,&lt;/P&gt;&lt;P&gt;end loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Oct 2008 17:36:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/4596757#M1083759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-25T17:36:39Z</dc:date>
    </item>
  </channel>
</rss>

