<?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: set get parameter and export import in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-get-parameter-and-export-import/m-p/6925162#M1484889</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur reply&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 May 2010 14:17:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-07T14:17:34Z</dc:date>
    <item>
      <title>set get parameter and export import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-get-parameter-and-export-import/m-p/6925158#M1484885</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;i have created a program and in that program i am sending few variable to some other program  through set get parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this program is going to be accessed by a number of users at same time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so my doubt is  if one use set the value in the program is it going to affect other user who is logged in at the same time?????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is set get  session specific ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should i use export import????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 13:34:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-get-parameter-and-export-import/m-p/6925158#M1484885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-07T13:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: set get parameter and export import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-get-parameter-and-export-import/m-p/6925159#M1484886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt; &lt;STRONG&gt;IMPORT&lt;/STRONG&gt; and &lt;STRONG&gt;EXPORT&lt;/STRONG&gt; are program specific (ABAP Memory) and it 
depends on what memory id the developer is giving.

Where &lt;STRONG&gt;SET / GET PARAMETER&lt;/STRONG&gt; , there is a memory id associated with a field all the time. 

You cannot use IMPORT / EXPORT when you want to pass something to Standard programs, like for example CALL TRANSACTION tcode AND SKIP FIRST SCREEN. Here you will have to use the SET/GET.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 13:40:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-get-parameter-and-export-import/m-p/6925159#M1484886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-07T13:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: set get parameter and export import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-get-parameter-and-export-import/m-p/6925160#M1484887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is fine but my question is if two users are accessing same program and if first use set the value of the parameter as X&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is this value is going to affect the second user????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 13:51:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-get-parameter-and-export-import/m-p/6925160#M1484887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-07T13:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: set get parameter and export import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-get-parameter-and-export-import/m-p/6925161#M1484888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; This is fine but my question is if two users are accessing same program and if first use set the value of the parameter as X&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; is this value is going to affect the second user????&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, they will not affect one another. This is beacuse for every user there is a separate &lt;EM&gt;user session&lt;/EM&gt; opened. In that user session each GUI window requests new &lt;EM&gt;external session&lt;/EM&gt; . With SAP memory (SET/GET parameter) you exchange the data b/w those external sessions, but only within one user session. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So no impact on someone's else program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 14:15:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-get-parameter-and-export-import/m-p/6925161#M1484888</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-05-07T14:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: set get parameter and export import</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-get-parameter-and-export-import/m-p/6925162#M1484889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur reply&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 May 2010 14:17:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-get-parameter-and-export-import/m-p/6925162#M1484889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-07T14:17:34Z</dc:date>
    </item>
  </channel>
</rss>

