<?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: How to read ParameterID from different(!!) user in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-parameterid-from-different-user/m-p/4556156#M1075616</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric,&lt;/P&gt;&lt;P&gt;I think USR05 only holds the default values at logon time, maintainable via System-&amp;gt;user profile-&amp;gt;own data.&lt;/P&gt;&lt;P&gt;If a value is changed during a user session via SET PARAMETER, it cannot be obtained from a different user context, as far as I know. Correct me if wrong.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Sep 2008 11:54:13 GMT</pubDate>
    <dc:creator>ThomasZloch</dc:creator>
    <dc:date>2008-09-30T11:54:13Z</dc:date>
    <item>
      <title>How to read ParameterID from different(!!) user</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-parameterid-from-different-user/m-p/4556152#M1075612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does anyhow know whether it's possible to read a Parameter ID from a different user?&lt;/P&gt;&lt;P&gt;For example: We have a Parameter ID 'GROUP' which is set according to the SAP-User!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So what I want to do is reading this Parameter ID for User XY, something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET PARAMETER ID 'GROUP' FIELD l_group &lt;U&gt;&lt;STRONG&gt;USER 'SUSAN'&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Possible??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 11:39:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-parameterid-from-different-user/m-p/4556152#M1075612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T11:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to read ParameterID from different(!!) user</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-parameterid-from-different-user/m-p/4556153#M1075613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No you can not do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID stores the value in SAP memory and this memory space will be different for different user, so you can not do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 11:43:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-parameterid-from-different-user/m-p/4556153#M1075613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T11:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to read ParameterID from different(!!) user</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-parameterid-from-different-user/m-p/4556154#M1075614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes, it is possible, Parameter IDs are stored in table USR05 for all users, you have to select the value according to the user/Parameter ID combination, then you can go with the SET ... command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 11:44:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-parameterid-from-different-user/m-p/4556154#M1075614</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-09-30T11:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to read ParameterID from different(!!) user</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-parameterid-from-different-user/m-p/4556155#M1075615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use the Shared memory concept. export the data using with one user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: werks type werks_d.
DATA: wa TYPE indx.

werks = '1000'.

EXPORT werks FROM werks
TO SHARED MEMORY indx(xy)
FROM wa
CLIENT sy-mandt
ID 'MID'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import the data using another user . &lt;/P&gt;&lt;P&gt;the declaration should be exactly same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: werks type werks_d.
DATA: wa TYPE indx.

IMPORT werks TO werks
FROM SHARED MEMORY indx(xy)
TO wa
CLIENT sy-mandt
ID 'MID'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 11:48:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-parameterid-from-different-user/m-p/4556155#M1075615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T11:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to read ParameterID from different(!!) user</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-parameterid-from-different-user/m-p/4556156#M1075616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eric,&lt;/P&gt;&lt;P&gt;I think USR05 only holds the default values at logon time, maintainable via System-&amp;gt;user profile-&amp;gt;own data.&lt;/P&gt;&lt;P&gt;If a value is changed during a user session via SET PARAMETER, it cannot be obtained from a different user context, as far as I know. Correct me if wrong.&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 11:54:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-parameterid-from-different-user/m-p/4556156#M1075616</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-09-30T11:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to read ParameterID from different(!!) user</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-parameterid-from-different-user/m-p/4556157#M1075617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, that's true. In USR05 there are only the default values (maintained in the user master data). If the parameter IDs is changed during runtime with SET command, that is not saved back to table USR05.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 12:03:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-read-parameterid-from-different-user/m-p/4556157#M1075617</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-09-30T12:03:48Z</dc:date>
    </item>
  </channel>
</rss>

