<?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: diff between internal session and external session in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729870#M317875</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In general each user can open up to six R/3 windows in a single SAPgui session. Each of these windows corresponds to a session on the application server with its own area of shared memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first application program that you start in a session opens an internal session within the main session. The internal session has a memory area that contains the ABAP program and its associated data. When the program calls external routines (methods, subroutines or function modules) their main program and working data are also loaded into the memory area of the internal session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only one internal session is ever active. If the active application program calls a further application program, the system opens another internal session. Here, there are two possible cases: If the second program does not return control to the calling program when it has finished running, the called program replaces the calling program in the internal session. The contents of the memory of the calling program are deleted. If the second program does return control to the calling program when it has finished running, the session of the called program is not deleted. Instead, it becomes inactive, and its memory contents are placed on a stack.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The memory area of each session contains an area called ABAP memory. ABAP memory is available to all internal sessions. ABAP programs can use the EXPORT and IMPORT statements to access it. Data within this area remains intact during a whole sequence of program calls. To pass data 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;P&gt;&lt;/P&gt;&lt;P&gt;All ABAP programs can also access the SAP memory. This is a memory area to which all 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 are often used to preassign values to input fields. You can set them individually for users, or globally according to the flow of an application program. SAP memory is the only connection between the different sessions within a SAPgui.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below links for more information...&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this answers yor question&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vara&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this solves your quesiton....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Dec 2006 16:05:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-26T16:05:48Z</dc:date>
    <item>
      <title>diff between internal session and external session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729860#M317865</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;    i would like to know the difference between internal and external session and &lt;/P&gt;&lt;P&gt;how  these session technically  handle.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 05:19:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729860#M317865</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T05:19:29Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal session and external session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729861#M317866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u mean to say BDC...Internal Session is Call Transaction Method whereas External session is Session method.....Means call transaction executes data and posts into SAP. Session method needs to be run from SM35 and then gets posted into SAP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 05:23:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729861#M317866</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T05:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal session and external session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729862#M317867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. return code    -     for session    No   ,  for call transaction yes&lt;/P&gt;&lt;P&gt;2. database update -       for session  synchronous,for call transaction      asynchronous/synchronous&lt;/P&gt;&lt;P&gt;3. processing      -   for session  -time-dalayed , for call transaction   -       immediately&lt;/P&gt;&lt;P&gt;4. transactions    -    for session - more than one,for call transaction  only one&lt;/P&gt;&lt;P&gt;5. error log       -       for session -will be created,for call transaction-  will not be created&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will help you in understanding the differences between the sessions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 05:33:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729862#M317867</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T05:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal session and external session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729863#M317868</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;May be you are asking about SAP memory and ABAP Memory,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP Memory - Available over the sessions&lt;/P&gt;&lt;P&gt;                       Use Memory ID's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP Memory - Available in current session only Example : funcntion modules.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 05:34:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729863#M317868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T05:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal session and external session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729864#M317869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;let me know about which sessions you want to know. reward points if the above details that i provided are helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 05:41:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729864#M317869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T05:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal session and external session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729865#M317870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Rao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           exactly  i wanted to know about that only so please let me know that &lt;/P&gt;&lt;P&gt; a user can have up to six session. so i am getting confuse for that only whether&lt;/P&gt;&lt;P&gt;one session or all six abap session are internal session .so which one called external session .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 05:42:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729865#M317870</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T05:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal session and external session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729866#M317871</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;&lt;/P&gt;&lt;P&gt;internal session means from sap screen you have option called create session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;external session means you have to go for login to the system again whcih is related external session&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 05:44:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729866#M317871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T05:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal session and external session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729867#M317872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Reddy,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           I want to know about that only so please let me know in detail because&lt;/P&gt;&lt;P&gt;we can have upto six session ,so  does  all these six sessions are called internal&lt;/P&gt;&lt;P&gt;session . how can we pass data to internal session ( import and export).So what &lt;/P&gt;&lt;P&gt;about  Set and Get parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 05:52:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729867#M317872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T05:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal session and external session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729868#M317873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Kumar,&lt;/P&gt;&lt;P&gt;       &lt;/P&gt;&lt;P&gt;        Exactly i want to know about ABAP Session so because we can have upto&lt;/P&gt;&lt;P&gt;six session so which called internal session and which one external  and how data&lt;/P&gt;&lt;P&gt;can  be pass to them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 06:02:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729868#M317873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T06:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal session and external session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729869#M317874</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;&lt;/P&gt;&lt;P&gt;internal session ( means ABAP/4 memory )  when u r using call transaction or u can write t code in command field in that case internal session can genrate means from sap screen you have option called create session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;external session (means sap memory) whenever u login to sap in that case external session genrate or xternal session means you have to go for login to the system again whcih is related external session .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regard&lt;/P&gt;&lt;P&gt;deepak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 15:30:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729869#M317874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T15:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: diff between internal session and external session</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729870#M317875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In general each user can open up to six R/3 windows in a single SAPgui session. Each of these windows corresponds to a session on the application server with its own area of shared memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first application program that you start in a session opens an internal session within the main session. The internal session has a memory area that contains the ABAP program and its associated data. When the program calls external routines (methods, subroutines or function modules) their main program and working data are also loaded into the memory area of the internal session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only one internal session is ever active. If the active application program calls a further application program, the system opens another internal session. Here, there are two possible cases: If the second program does not return control to the calling program when it has finished running, the called program replaces the calling program in the internal session. The contents of the memory of the calling program are deleted. If the second program does return control to the calling program when it has finished running, the session of the called program is not deleted. Instead, it becomes inactive, and its memory contents are placed on a stack.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The memory area of each session contains an area called ABAP memory. ABAP memory is available to all internal sessions. ABAP programs can use the EXPORT and IMPORT statements to access it. Data within this area remains intact during a whole sequence of program calls. To pass data 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;P&gt;&lt;/P&gt;&lt;P&gt;All ABAP programs can also access the SAP memory. This is a memory area to which all 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 are often used to preassign values to input fields. You can set them individually for users, or globally according to the flow of an application program. SAP memory is the only connection between the different sessions within a SAPgui.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below links for more information...&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/9f/db9e0435c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this answers yor question&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vara&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this solves your quesiton....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 16:05:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/diff-between-internal-session-and-external-session/m-p/1729870#M317875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T16:05:48Z</dc:date>
    </item>
  </channel>
</rss>

