Table for User Address details

Hi All,
I wanted to know in which table the address of the employees (users) saved in SRM5.0? I checked function module BAPI_BUPA_ADDRESSES_GET, but it just links the business partner number to the Address Guid. How do I find which address detail is linked to this Guid? I checked table ADRC, but couldnot find it there. Could anyone help me on this?
My actual issue is that, for a particular user,the address information doesnot showup in the shop screen(when I try searching for this user using 'shop for' option). The users in SRM are replicated from HR Org structure in ECC6.0
So, I wanted to know which table of SRM is not updated with the address linking this user.
For this particular user, I can find 2 address guids from the function module, BAPI_BUPA_ADDRESSES_GET. Is that the reason for this issue?
How do I resolve this?
Regds,
Ancy

Hi,
The link between these two business partner number is Person number.. Following is the architecture..
1) User will have a Business Partner number in SRM
2) Company/org will have a Business partner number in SRM
3) There is something called User and company relationship will exist by person number, i.e. User's official information like  Building, Floor, Room Number are stored under company's /org's BP address number refer to person number..
BP u2013 Business Partner *************
This should be helpful..
Thanks!!
Bharath

Similar Messages

  • Table for User Parameter IDs

    Hi All,
    Does anyone know the Table for User Parameter IDs?
    Thanks in Advance

    Hi Duke,
    USR01                          User master record (runtime data)
    USR02                          Logon data
    USR03                          User address data
    USR04                          User master authorizations
    USR05                          User Master Parameter ID      
    Regards,
    Ashok

  • Table for User telephone num

    Dear Experts,
    I want the table to get the Telephone phone number of all users to send an SMS.
    Actuall i am getting the telephone number of a user from "BAPI_USER_GET_DETAIL".
    But i want all user phone numbers at a time.
    For that i need  table to get all the phone numbers.
    Please tell me if there is any table.
    Regards,
    Eswar.

    Hi Eswar,
    I think the table you're looking for is ADR2, and stores telephone numbers from users and business partners.
    For consulting the table, you'll need an address number.
    For users addresses numbers, please consult table USR21
    For business partners addresses numbers, please consult table BUT020
    Kind regads,
    Garcia

  • Tables for SD partner details

    hi,
    Can anybody help me to get tables for SD partner details?
    Any useful answer will be rewarded.
    Thanks & Regards
    Naveen

    Hi,
    For order related parnter you can use the table VBPA
    For general customer master you can use the table KNA1
    Thanks
    Naren

  • Table for storing inventory details in FIFO base

    HI All,
    Can anyone help me in finding where I can get the Table for storing inventory details in FIFO base othe rthan OINM.
    Any kind of help will appreciated.
    Regards:
    Swati

    Hi Darius,
    I checked tables CIFV, OIVQ,SIVQ or UIVQ table.
    CIFV                                   - We can not fetch data from SQL.
    SIVQ, UIVQ                        - No records found
    OIVQ                                  - There is only 6607 records in this table but OINM is having 14085 so not all the transcation are in this      table.
    Still i am waiting for any help.
    I am using SAP 8.8 PL19.
    regards:
    Swati
    Edited by: SwatiGupta on Sep 16, 2011 7:52 AM

  • Table for user status field in CJ20n transaction project defination

    HI ALL,
    what is table for user status field in CJ20n transaction project defination creation. This field is in Basic Data tab.
    Thanks.

    Hi,
    Check following tables for Usre status:
    TJ30 - User status
    TJ30T - Texts for user status
    TJ20 - Status profile
    JEST - Object status
    JSTO- WBS status profile.
    Check this code:
    REPORT zps_get_userstatus .
    PARAMETERS: p_posid LIKE prps-posid.
    *-- Constants
    CONSTANTS: gc_yes(1)     TYPE c                 VALUE 'X',
               gc_no(1)      TYPE c                 VALUE ' '.
    *-- Variables
    DATA: l_objnr LIKE prps-objnr.
    *-- Internal tables
    DATA: BEGIN OF lit_jest OCCURS 0,
           objnr LIKE jest-objnr,
           stat  LIKE jest-stat,
         END OF lit_jest.
    DATA: BEGIN OF lit_jsto OCCURS 0,
           objnr LIKE jsto-objnr,
           stsma LIKE jsto-stsma,
          END OF lit_jsto.
    DATA: BEGIN OF lit_status OCCURS 0,       "Combination of JEST & JSTO
              objnr LIKE jest-objnr,
              stsma LIKE jsto-stsma,
              stat  LIKE jest-stat,
            END OF lit_status.
    DATA: BEGIN OF lit_usrsta OCCURS 0,       "Uer status for all wbs
             objnr LIKE jest-objnr,
             stsma LIKE jsto-stsma,
             stat  LIKE tj30t-estat,
             txt04 LIKE tj30t-txt04,
           END OF lit_usrsta.
    DATA: BEGIN OF lit_usrtxt OCCURS 0,       "User Status text - TJ30T
            stsma LIKE tj30t-stsma,
            stat  LIKE tj30t-estat,
            txt04 LIKE tj30t-txt04,
          END OF lit_usrtxt.
    * get WBS object number
    SELECT SINGLE
         objnr FROM prps
               INTO l_objnr
               WHERE posid = p_posid.
    * get WBS active status from table JEST
    SELECT
          objnr
          stat
               FROM jest INTO TABLE lit_jest
               WHERE objnr =  l_objnr AND
                     inact <> gc_yes.
    * get WBS status profile from table JSTO
    SELECT
          objnr
          stsma FROM jsto
                INTO TABLE lit_jsto
                WHERE objnr =  l_objnr.
    * combine JEST and JSTO table for user status
    LOOP AT lit_jest.
      IF lit_jest-stat CP 'E++++'.
        READ TABLE lit_jsto WITH KEY
                            objnr = l_objnr.
        IF sy-subrc = 0.
          lit_status-objnr = lit_jest-objnr.
          lit_status-stsma = lit_jsto-stsma.
          lit_status-stat  = lit_jest-stat.
          APPEND lit_status.
        ENDIF.
      ENDIF.
      CLEAR: lit_jsto, lit_status.
    ENDLOOP.
    *  get text for user status
    SELECT DISTINCT
             stsma
             estat
             txt04 FROM tj30t
                   INTO TABLE lit_usrtxt
                   FOR ALL ENTRIES IN lit_status
                   WHERE stsma = lit_status-stsma AND
                         estat = lit_status-stat  AND
                         spras = sy-langu.
    Let me know if you have any question.
    Regards,
    RS

  • Table  for User Status Profile

    hi
    Please tell anybody what is the table for User Status Profile in Sales Orders? where it will stores?
    Regards
    Rajendra

    Hi,
    Use table JEST
    Here you will have to enter the object number as an input field
    Get object number from table VBAK or VBAP based on whether the status profile is attached at sales order header or at sales order item.
    Status which is active will start with letter E and the status inactive flag will be blank.
    Regards
    Ravi

  • Tables for User Details & User Tcode Details.

    Hi all,
        I'm need of the tables as per the criteria given below.
             1. User List
             2. Tcodes associated with the User.
         Also let me know if there is any Standard Report that returns list of users with tcodes associated with them.
         Can anyone help me out?
    Thank You.

    Hi Shrilath,
         You can use tcode SUIM - (User info system- most user related report can be found here).
    SAP has provided you with the SUIM tool for these kind of generic requirement, so avoid using this than creating your own custom program(no reinvention of the WHEEL).
    As about you requirement, execute tcode SUIM
    Execute the selection "Executable for User" and Enter user name
    You will be listed with all the tcode the user can execute in the system.
    As about your initial requirement to get all users in the system.
    You can execute the User section (drill down on first screenshot), and execute without any filter values on address or user name. You should get all the users in the system
    Thanks & Regards,
    Tashi

  • Fields and Table for Delivery address in a PO

    Hi Gurus,
    I want to find out the fields and the corresponding table for the delivery address in a PO (line item details). It is the address of the plant. I searched the tables ADRNR, ADRN2 and one customized field (/GLB/Ship_to) in the table EKPO, but of no help. I can find out from other tables the address of the plant, but I want to go to a table for PO, where I can have the delivery address/ship to address.
    Please help.
    Thanks,
    Kumar

    Hi
    For Plant Address, check the table T001W
    If you want complete address details, take the ADRNR field value from T001W and pass it to the field ADDRNUMBER of table ADRC, you will get the details.
    Normally addresses are stored in the table ADRC. If you gave any other Delivery Address in the PO, instead of Plant, get the value of ADRN2 from EKPO and pass it to ADDRNUMBER of ADRC and you will get the address detials.
    Edited by: Arun R on Dec 17, 2010 2:39 PM

  • Std table for user history

    Hello Experts,
    I am new for SAP.I have a problem i need that standard table which store user working history. Actually i was using a table in my one application but someone by mistake has been deleted that table and i don't know who do that. Now i want to know that when and who deleted that table.Or tell me the procedure how i can know that.
    Thanks in advance.
    Vishu

    Hi,
    U can see tables:
    USR01 User master record (runtime data)
    USR02 Logon data
    USR03 User address data
    USR05 User Master Parameter ID
    USR12 User master authorization values
    cheers,
    Simha.
    <b>Reward if it is needful..</b>

  • Querying CMS tables for users' security, history & favorites

    Hello,
    We are running BOBJ over a BW environment, and we've been asked to help design a Webdynpro interface that reads a user's security credentials in both BW and BOBJ servers and pulls in all reports, Bex or BOBJ, that they have access to.
    To do this, we would need to query the CMS tables for:
    All reports a user is authorized to view
    Groups a user is associated with
    User's History
    User's Favorites
    Does anyone have suggestions?  I've researched Query Builder, but I'm not sure if it can help us, as it accesses three virtual tables instead of the physical tables in the CMS.  The option I am guessing we will need to use is SDK. 
    I'm fairly new to both BW and BOBJ, so any advice is appreciated.
    Thanks
    Scott

    Hello Scott,
    Did you check the possibility of using Audit universe and reports? Please check below link for some useful sample files.
    http://scn.sap.com/docs/DOC-53904
    Regards,
    Nikhil Joy

  • Table for C form Details in sales order

    Hi Experts,
    what is the table for details of C, H, I, etc forms against sales order.
    Thanks,
    Anu

    Hi
    yes i checked by step no. but step of this value in not available in KONV
    like ZDCM is on 125 step value available and JASS is on 170 value is available but
    NET EX MILL PRICE is on 160 and this 160 step is not available.
    Regards
    Abhi

  • Table for viewing SHC details and Confirmation details

    Hi All,
    I would like to ask in which table can i get SHC details in SRM (SHC Num, Company Code, Business Area, Created By)
    I would also like to get same details for Confirmations in SRM.
    Thanks!

    Hi,
    Go to T.code: BBP_PD
    Enter the object type : BUS 2121 for shopping cart
    and execute and click on the shopping cart no
    You can see  all the tables for the shopping cart no.
    For Confirmation check :BBP_PDCON this is also appearing in the above t.code
    Please check and reply
    Regards
    Ganesh Kumar .G

  • Problem with BAPI_SALESORDER_CHANGE for updating address details

    Hi,
    I am trying to update address details using the bapi BAPI_SALESORDER_CHANGE. I am unable to update. I am populating only the required fields.
    Could anyone tell whats the problem with BAPI?
    Thanks & Regards,
    Yaseen Mahammad.

    Yaseen,
    Do check whether you have passed values to the internal table ORDER_HEADER_INX. You have to pass value to the update field as 'U' and all the fields which you have passed in the header internal table as 'X'.
    and  behave_when_error = 'P'

  • How to list all available tables for user "karl"

    How can I list all available tables (=table names) for user "karl"?
    Nice to have would be if (after each table name in another column of each row) the number of data rows in this table can be listed similar to:
    TABLE NUM ROWS
    TESTA 12
    TESTB 3455
    ANOTHERTAB 234
    How can I do this?

    from Laurent Schneider
    http://laurentschneider.com/wordpress/2007/04/how-do-i-store-the-counts-of-all-tables.html
    SQL> select
      2    table_name,
      3    to_number(
      4      extractvalue(
      5        xmltype(
      6 dbms_xmlgen.getxml('select count(*) c from '||table_name))
      7        ,'/ROWSET/ROW/C')) count
      8  from user_tables;
    TABLE_NAME                      COUNT
    DEPT                                4
    EMP                                14
    BONUS                               0
    SALGRADE                            5

Maybe you are looking for

  • Oracle 8.1.6 and 8.1.61 ODBC Driver Access Violation

    Using Oracle ODBC for Windows to Oracle 8.1.6 database to get a list of the tables/views in the database. The following code worked on 8.0.4, 8.0.5, and 8.1.5 databases and their respective ODBC Drivers. It gives me an access violation with 8.1.6. Th

  • JSF 1,1 is a mature technology to put systems in production?  Somebody has

    JSF 1,1 is a mature technology to put systems in production? Somebody has systems developed with JSF 1,1 in production? Thanks Pablo Dar�o Ingelhorn Ingelhorn Sistemas Toay- La Pampa - Argentina

  • Router blocks random IP or Domain Addresses

    This appears to be a rather unusual problem and has only been noticed in the past month. Suddenly without any apparent warning, certain web sites are no longer accessible. This was first noticed when I was unable to access my pop3 email from the www.

  • Error from External Tax system in CRM Quotation

    Hi, We have a Quotation in CRM, as soon as we click on 'Edit' button in WebUI, We get error "External Tax System: An error occurred while calculating tax. This may be an incorrect use of the calculation engine. Please contact your software vendor. Er

  • Preview crashes when faxing

    I'm using Word v.x -- when I click on the preview button before faxing a document, the preview application opens briefly then promptly crashes. It seems like I can still send the fax out, I just can't preview it, which isn't too helpful. This wasn't