<?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 Repository in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/repository/m-p/3242798#M773954</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is repository is SAP? Could anyone tell me in detail?&lt;/P&gt;&lt;P&gt;What is   SAP an ABAP memory?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Jan 2008 14:30:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-04T14:30:32Z</dc:date>
    <item>
      <title>Repository</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/repository/m-p/3242798#M773954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is repository is SAP? Could anyone tell me in detail?&lt;/P&gt;&lt;P&gt;What is   SAP an ABAP memory?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jan 2008 14:30:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/repository/m-p/3242798#M773954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-04T14:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: Repository</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/repository/m-p/3242799#M773955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of filling this forum with such basic questions you could try this link :&lt;/P&gt;&lt;P&gt;&amp;lt;a href=" &lt;A href="http://www.google.com" target="test_blank"&gt;http://www.google.com&lt;/A&gt; "&amp;gt;http://www.google.com&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jan 2008 14:53:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/repository/m-p/3242799#M773955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-04T14:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: Repository</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/repository/m-p/3242800#M773956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;    SAP Repository means the group of all objects like programs, business objects, classes, Dictionary,Web dynpro,BSp, test objects like Ecatt and all other objects &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) SAP memory is a memory area to which all main sessions within a SAPgui have access. You can use SAP memory either to pass data from one program to another within a session, or to pass data from one session to another. Application programs that use SAP memory must do so using SPA/GPA parameters (also known as SET/GET parameters). These parameters can be set either for a particular user or for a particular program using the SET PARAMETER statement. Other ABAP programs can then retrieve the set parameters using the GET PARAMETER statement. The most frequent use of SPA/GPA parameters is to fill input fields on screens &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP memory is a memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. Data within this area remains intact during a whole sequence of program calls. To pass data &lt;/P&gt;&lt;P&gt;to a program which you are calling, the data needs to be placed in ABAP memory before the call is made. The internal session of the called program then replaces that of the calling program. The program called can then read from the ABAP memory. If control is then returned to the program which made the initial call, the same process operates in reverse.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jan 2008 15:28:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/repository/m-p/3242800#M773956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-04T15:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: Repository</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/repository/m-p/3242801#M773957</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;  1). SAP Repository it is central data repository where all objects(like.. programs, dictionary ,business objects ,packages,function groups,classes.......) are stored. T-code for repository is se80 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 2). SAP memory and ABAP memory to pass data between different programs.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  The SAP memory is a user-specific memory area for storing field values.&lt;/P&gt;&lt;P&gt;it si available in all of the open sessions in a user's terminal session, and&lt;/P&gt;&lt;P&gt;is reset when the terminal session ends. All external sessions can access&lt;/P&gt;&lt;P&gt;SAP memory. You can also read the memory areas from the SAPmemory&lt;/P&gt;&lt;P&gt;using the ABAP statement GET parameter ID field.&lt;/P&gt;&lt;P&gt;  The ABAP memory is initialized after the program is called.ABAP memory&lt;/P&gt;&lt;P&gt;is also a user-specific, and is local to each external session. you can use it&lt;/P&gt;&lt;P&gt;to  pass any ABAP variables(fields, structures, internal tables,complex objects)&lt;/P&gt;&lt;P&gt;between the internal sessions of single external session.&lt;/P&gt;&lt;P&gt;    Each external session has its own ABAP memory,when you end an external &lt;/P&gt;&lt;P&gt;session, the corresponding ABAP memory is released automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;if it is useful, reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Lokesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jan 2008 12:34:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/repository/m-p/3242801#M773957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-05T12:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Repository</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/repository/m-p/3242802#M773958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually our created  objects saves at repositery&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 05 Jan 2008 13:01:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/repository/m-p/3242802#M773958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-05T13:01:38Z</dc:date>
    </item>
  </channel>
</rss>

