<?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: general in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/3828197#M920599</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kartik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.By using extract datasets, you can handle groups of data with different structure and get statistical figures from the grouped data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need not define the structure of the extract dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In contrast to internal tables, the system partly compresses exact datasets when storing them. This reduces the storage space required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extract datasets do not need a special work area for interface. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2&amp;amp;3 &lt;/P&gt;&lt;P&gt;Dispatcher  is  the  control  agent  which  manages  the &lt;/P&gt;&lt;P&gt;resources   for  the  R/3  applications&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Application server contains Dispacher.&lt;/P&gt;&lt;P&gt;Dispatcher contains queue file and workprocessors.&lt;/P&gt;&lt;P&gt;When we execute object, the request goes to dispatcher and &lt;/P&gt;&lt;P&gt;dispatcher sends it to queue file. after that dispatcher &lt;/P&gt;&lt;P&gt;allocates the request to available work proecessor to &lt;/P&gt;&lt;P&gt;process the request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The work processor contains screen processor, abap &lt;/P&gt;&lt;P&gt;processor and flow logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP processor process the abap code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each request in workprocessor contains user context and &lt;/P&gt;&lt;P&gt;roll area.&lt;/P&gt;&lt;P&gt;Roll area contains program name, variables, memory area, &lt;/P&gt;&lt;P&gt;dynamic variables, etc.&lt;/P&gt;&lt;P&gt;&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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***Please reward points if found useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 May 2008 05:24:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-12T05:24:16Z</dc:date>
    <item>
      <title>general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/3828195#M920597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one give the answer to this question..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. what r extarct data sets, what r these advantages   ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. what processor is exisited in online program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. what is processor, how many processors existed in sap appliction server? and what is diff b/n proceesor and dispatcher?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2008 05:06:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/3828195#M920597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-12T05:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/3828196#M920598</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;Since internal tables have fixed line structures, they are not suited to handle data sets with varying structures. For this purpose, ABAP offers the possibility to create so-called extract datasets (extracts, for short). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An extract is a sequential dataset in the memory area of the program. You can only address the entries in the dataset within a special loop. The index or key access permitted with internal tables is not allowed. You may only create one extract in any ABAP program. The size of an extract dataset is, in principle, unlimited. Extracts larger than 500 KB are stored in operating system files. The practical size of an extract is up to 2 GB, as long as there is enough space in the file system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An extract dataset consists of a sequence of records of a predefined structure. However, the structure need not be identical for all records. In one extract dataset, you can store records of different length and structure one after the other. You need not create an individual dataset for each different structure you want to store. This fact reduces the maintenance effort considerably.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In contrast to internal tables, the system partly compresses extract datasets when storing them. This reduces the storage space required. In addition, you need not specify the structure of an extract dataset at the beginning of the program, but you can determine it dynamically during the flow of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use control level processing with extracts just as you can with internal tables. The internal administration for extract datasets is optimized so that it is quicker to use an extract for control level processing than an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And for processors jst go to following link,&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb2d67358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb2d67358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward pts if helpfull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhanashree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2008 05:19:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/3828196#M920598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-12T05:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: general</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/3828197#M920599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kartik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.By using extract datasets, you can handle groups of data with different structure and get statistical figures from the grouped data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need not define the structure of the extract dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In contrast to internal tables, the system partly compresses exact datasets when storing them. This reduces the storage space required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extract datasets do not need a special work area for interface. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2&amp;amp;3 &lt;/P&gt;&lt;P&gt;Dispatcher  is  the  control  agent  which  manages  the &lt;/P&gt;&lt;P&gt;resources   for  the  R/3  applications&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Application server contains Dispacher.&lt;/P&gt;&lt;P&gt;Dispatcher contains queue file and workprocessors.&lt;/P&gt;&lt;P&gt;When we execute object, the request goes to dispatcher and &lt;/P&gt;&lt;P&gt;dispatcher sends it to queue file. after that dispatcher &lt;/P&gt;&lt;P&gt;allocates the request to available work proecessor to &lt;/P&gt;&lt;P&gt;process the request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The work processor contains screen processor, abap &lt;/P&gt;&lt;P&gt;processor and flow logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP processor process the abap code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For each request in workprocessor contains user context and &lt;/P&gt;&lt;P&gt;roll area.&lt;/P&gt;&lt;P&gt;Roll area contains program name, variables, memory area, &lt;/P&gt;&lt;P&gt;dynamic variables, etc.&lt;/P&gt;&lt;P&gt;&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;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***Please reward points if found useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 May 2008 05:24:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/general/m-p/3828197#M920599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-12T05:24:16Z</dc:date>
    </item>
  </channel>
</rss>

