<?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 area in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973217#M399107</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi prashanth,&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;i have one doubt if it is in applicationarea.&lt;/P&gt;&lt;P&gt;If any thing stored in application server then it can be accesed by all the users under that client.ok&lt;/P&gt;&lt;P&gt;so at runtime if wa stored in application server as temporary storage then there is a possibility of using this wa by other users under client na.&lt;/P&gt;&lt;P&gt;Please correct me if i am wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Feb 2007 09:59:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-23T09:59:00Z</dc:date>
    <item>
      <title>work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973212#M399102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In program if we create workarea or internal tables where exactly they stored i mean their structure or their dat at run time.&lt;/P&gt;&lt;P&gt;Pleas tell me does they store in application server or presentation server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 09:42:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973212#M399102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T09:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973213#M399103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the definition for a table with wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES : BEGIN OF ty_mara,
          matnr LIKE mara-matnr,
          mtart LIKE mara-mtart,
          matkl LIKE mara-matkl,
         END OF ty_mara.
* Internal table
 DATA :  i_output TYPE ty_mara OCCURS 0 WITH HEADER LINE.
************************************************************************
* Work Areas:
 DATA: wa_output TYPE ty_mara.

When u r looping at the table or reading u can use wa.

LOOP AT i_output  INTO wa_output.
 READ TABLE itab INTO wa_itab WITH KEY 
                            matnr = wa_output -matnr.
if sy-subrc = 0.
 wa_output-netpr = wa_itab-netpr.
 MODIFY i_output FROM wa_output.
ELSE.
APPEND wa_output TO i_output.
ENDIF.
CLEAR wa_output , wa_itab.
ENDLOOP.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-work-area-and-header-line.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-work-area-and-header-line.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;These are temporarily used for storing data. &lt;/P&gt;&lt;P&gt;Hope  u r clear, reward poinst if this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 09:43:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973213#M399103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T09:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973214#M399104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Judit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply but i did not get the answere.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually what i need is you told  that wa or internal tables are for temporary storage. &lt;/P&gt;&lt;P&gt;My quetion where exactly this temporary storage location occurs?is it in presentation server or application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you very much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 09:55:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973214#M399104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T09:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973215#M399105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  I hope it should be the Application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Prashanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 09:55:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973215#M399105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T09:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973216#M399106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;          As you know the all the dialog programs will be process by the DIALOG WORKPROCESS of the application server the data related to a program will also be stored in the ROLL AREA of the DIALOG WORK PROCESS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each work process has its own memory area called ROLL AREA. When a dialog program is picked up by a dialog workprocess then it will allocate the memory that is required for this program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So its application server memory.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 09:56:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973216#M399106</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-02-23T09:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973217#M399107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi prashanth,&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;i have one doubt if it is in applicationarea.&lt;/P&gt;&lt;P&gt;If any thing stored in application server then it can be accesed by all the users under that client.ok&lt;/P&gt;&lt;P&gt;so at runtime if wa stored in application server as temporary storage then there is a possibility of using this wa by other users under client na.&lt;/P&gt;&lt;P&gt;Please correct me if i am wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 09:59:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973217#M399107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T09:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973218#M399108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shweta,&lt;/P&gt;&lt;P&gt;          When ever a user opens in another client or the same one he has his Work Process and so everything will be newly created if you (The same user) is opening another session in the same Client and Server then the WA will have the same values as you ahve said.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Prashanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 10:06:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973218#M399108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T10:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973219#M399109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;An internal table is a temporary table stored in RAM on the application server. &amp;lt;/b&amp;gt;It is created and filled by a program during execution and is discarded when the program ends. Like a database table, an internal table consists of one or more rows with an identical structure, but unlike a database table, it cannot hold data after the program ends. &amp;lt;b&amp;gt;Use it as temporary storage for manipulating data or as a temporary private buffer&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;occurs does not limit the number of rows that can be added to the internal table. For example, if you specify occurs 10, you can put more than 10 rows into the internal table. The number of rows you can put into an internal table is theoretically only limited by the amount of virtual memory available on the application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system uses the occurs clause only as a guideline to determine how much memory to allocate. The first time a row is added to the internal table, enough memory is allocated to hold the number of rows specified on the occurs clause. If you use that memory up, more is allocated as needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, you can specify occurs 0. If you do this, the system allocates 8KB pages of memory at a time. However, there are no advantages to using occurs 0 other than the fact it is only a little easier to code occurs 0 than it is to estimate the size of the internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Don't use occurs 0 if you expect to store less than 8KB in an internal table. If you do, the system will allocate 8KB from the paging area. Memory will be wasted and paging could increase, resulting in poorer performance.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 10:10:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973219#M399109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-23T10:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: work area</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973220#M399110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    When a user executes a dialog program he will get his own WORK PROCESS for this execution so once the work process is assigned to him the data relevant for this program will be ROLLED IN into the work process so its exclusive for that user, once the execution is over the data will be ROLLED OUT and the wrok process is free to pickup any users any program waiting for execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2007 10:12:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-area/m-p/1973220#M399110</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-02-23T10:12:52Z</dc:date>
    </item>
  </channel>
</rss>

