<?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: Table to find the userid detials in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453422#M214490</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anitha,&lt;/P&gt;&lt;P&gt;You can see all the detail of user from table USR02 this the table from where you can find maximum records related to user as there: &lt;/P&gt;&lt;P&gt;BNAME is the User name in user master record.&lt;/P&gt;&lt;P&gt;Regaerd.&lt;/P&gt;&lt;P&gt;Ankur Garg.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Jul 2006 05:35:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-25T05:35:01Z</dc:date>
    <item>
      <title>Table to find the userid detials</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453417#M214485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the Request for Quotation we can find the userid who created it in EKKO-ERNAM, can u tell me how to find the user id detials like phone number and fax number etc. What is the table from which i can get these details for the phone number and fax details etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 05:29:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453417#M214485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T05:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Table to find the userid detials</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453418#M214486</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;Check the table USR21 , from this table take address number , from ADR3 and ADR2 get fax and phone numbers using address number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fields : TELNR_LONG, FAXNR_LONG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single *&lt;/P&gt;&lt;P&gt;                from usr21&lt;/P&gt;&lt;P&gt;                   inner join adr3&lt;/P&gt;&lt;P&gt;                        on  usr21&lt;SUB&gt;addrnumber = adr3&lt;/SUB&gt;addrnumber&lt;/P&gt;&lt;P&gt;                       and  usr21&lt;SUB&gt;persnumber = adr3&lt;/SUB&gt;persnumber&lt;/P&gt;&lt;P&gt;                               where usr21~bname = EKKO-ERNAM&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;Appana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 05:32:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453418#M214486</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-07-25T05:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: Table to find the userid detials</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453419#M214487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when  u make  po (me23n)in header there is a tab for that if  u maintain it  than  it  will come ..&lt;/P&gt;&lt;P&gt;just check  from where  it  is  store  by clicking f1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 05:33:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453419#M214487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T05:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: Table to find the userid detials</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453420#M214488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Anitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use these table for infos about user&lt;/P&gt;&lt;P&gt;USR01 User master record (runtime data)&lt;/P&gt;&lt;P&gt;USR02 Logon Data (Kernel-Side Use) &lt;/P&gt;&lt;P&gt;USR03 User address data &lt;/P&gt;&lt;P&gt;USR04 User master authorizations &lt;/P&gt;&lt;P&gt;USR05 User Master Parameter ID &lt;/P&gt;&lt;P&gt;USR06 Additional Data per User &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u find it useful plz mark the points&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;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 05:34:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453420#M214488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T05:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: Table to find the userid detials</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453421#M214489</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;Check the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Transp. table      &amp;lt;b&amp;gt;EKAN&amp;lt;/b&amp;gt;             Active                                     
Short Description  Vendor Address: Purchasing Document                         

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 05:35:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453421#M214489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T05:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: Table to find the userid detials</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453422#M214490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anitha,&lt;/P&gt;&lt;P&gt;You can see all the detail of user from table USR02 this the table from where you can find maximum records related to user as there: &lt;/P&gt;&lt;P&gt;BNAME is the User name in user master record.&lt;/P&gt;&lt;P&gt;Regaerd.&lt;/P&gt;&lt;P&gt;Ankur Garg.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 05:35:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453422#M214490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T05:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: Table to find the userid detials</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453423#M214491</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;  Try USR01-USR05 tables . Stores all the user details&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;Shounak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 05:35:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453423#M214491</guid>
      <dc:creator>former_member628175</dc:creator>
      <dc:date>2006-07-25T05:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Table to find the userid detials</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453424#M214492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;   try this table 'USR21'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;chetan vishnoi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 05:39:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-to-find-the-userid-detials/m-p/1453424#M214492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T05:39:36Z</dc:date>
    </item>
  </channel>
</rss>

