SAP users master table

Hi,
What is the table name that stores SAP user's master data.
I want the User's First name and Last Name

Moderator message - Please search before asking - post locked
Rob

Similar Messages

  • SAP USERS ROLE TABLE

    Can some one tell me the SAP USERS ROLE TABLE
    I Will assign point to any input.
    Balance Roll forward     
    Change Vendor Line Items
    Change Parked Vendor Document
    Change/ Reverse Vendor Invoice     
    Check Processing
    Clear Accounts Payable Items
    Display A/P  Balance & Items
    Display Checks     
    Display Vendor Documents     
    Display A/P Master Data     
    Display Parked Vendor Documents     
    Account Payable Interest Calculation     
    A/P Invoice Entry     
    A/P Accounting Key Reports     
    Manual Payment     
    Payments Using Bill of Exchange     Display
    Payment Run Parameters     
    Create and Process Payment Run Proposal     
    Accounts payable period closing     
    Post Parked Vendor Document     
    Maintenance of Accounts Payable Master Data     
    Process Withholding Tax

    go to t code PFCG
    Search for roles with SAP_FI_AP*
    You could always create your own role.
    In the Menu tab add the t codes you have specified.
    You will then need to add the authorization objects in the authorization tabs.
    For the t codes you have I guess it would take an hour max.

  • CUA user master table updates from child system

    Hi Experts,
    In my system although there are roles assigned to users in child system they are not showing up in CUA for few user.
    Is there any program in CUA which i can use to  update the user master tables for only a limited set of users from child systems.
    Regards,
    Sandeep

    Hi Sandeep,
    Just want to check below queries....if this solves your problem..
    Is these are the new systems assigned to CUA or moved from other CUA as you said that role assignment is available in child system but not in CUA ? Another  thing that  I want you to check the User Group  assigned to user in child system and in CUA.If user gorups assigned to users are different in CUA and child system or particular group is missing in any one of the system then idoc will not move. Also check the Output device type along with address data...Any mismatch of these will stop the idoc.
    After that run the SCUG for all users, in CUA as suggested by akshay, this you can run for all 10 child system from CUA, no need to go in every child system.....

  • USER MASTER TABLES

    In which USER MASTER table contain fields FIRSTNAME,LASTNAME....plz send me....Very Urgent...!

    Check with the tables below related to USER Details.
    USR02
    Logon data
    USR04
    User master authorization (one row per user)
    UST04
    User profiles (multiple rows per user)
    USR10
    Authorisation profiles (i.e. &_SAP_ALL)
    UST10C
    Composit profiles (i.e. profile has sub profile)
    USR11
    Text for authorisation profiles
    USR12
    Authorisation values
    USR13
    Short text for authorisation
    USR40
    Table for illegal passwords
    OBJT
    Authorisation objetc table
    Reward points if useful.

  • UPDATE SAP USER EMAIL

    Hi,
    I'm trying to update sap user email by using BAPI_USER_CHANGE BAPI. This is the code:
          CLEAR it_return.
          v_address-e_mail = ls_salida-smtp_addr.
          v_addressx-e_mail = 'X'.
          CALL FUNCTION 'BAPI_USER_CHANGE'
            EXPORTING
              username = lv_bname
              address  = v_address
              addressx = v_addressx
            TABLES
              return   = it_return.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    When the execution finish everything seems OK but when I check in SAP user master data, email address is not updated.
    Can you tell me how can i do to make it works? or there is another way to update sap user email address?
    Thanks
    Andres

    example
      DATA: lv_addcomx    TYPE bapiadcomx,
            lt_bapiadsmtp TYPE TABLE OF bapiadsmtp,
            ls_bapiadsmtp LIKE LINE OF lt_bapiadsmtp,
        MOVE: 'X'               TO lv_addcomx-adsmtp,        "Update Flag
              ls_list-smtp_addr TO ls_bapiadsmtp-e_mail,
              ls_list-smtp_addr TO ls_bapiadsmtp-email_srch,
              001               TO ls_bapiadsmtp-consnumber.
        APPEND ls_bapiadsmtp TO lt_bapiadsmtp.
        CALL FUNCTION 'BAPI_USER_CHANGE'
          EXPORTING
            username = lv_name
            addcomx  = lv_addcomx
          TABLES
            return   = lt_return
            addsmtp  = lt_bapiadsmtp.
    You can change.. and check the su01

  • How to receive replies back to SAP user's inbox from external domain.

    We are facing a scenario where an email should be sent from SAP to any external domain ( ie: abc.com ) and  I know that we can trigger outgoing mail from SAP but not sure about receiving emails to a specific SAP User id's inbox (SBWP). I was searching some information from SAP notes and found one (SAP Note:- 455140) but not sure whether it's possible in our current version(R/3 release 4.6C). Please confirm ASAP since we have to decide a key functionality based on this.

    I have tried SCON -> Settings -> Inbound distribution.
    But my question is how does the system receive the reply from the external domain. We can execute the send process in the transaction SCOT. But how do we initiate the receive process ? When we send a email from SAP to some external domain eg. yahoo.com, the recepient of that mail would see the mail as coming from the address that is configured in the SAP user master record (Internet mail) of the sender. So when a reply to the original mail is sent, it would go to the email address of the sender that is mentioned in the "Internet Mail" field of the SAP user master record and not to the SAP User Inbox of the original sender.

  • Replicate APO master table data into HANA db via SLT

    Hi,
    Can anybody help me on replicating SAP APO master table data into SAP HANA by using SLT.
    What is the hardware requirement (Version & Patch) for APO system to communicate with SLT and is it the same methodology to follow while replicating ECC data via SLT to HANA or different.
    Please treat it urgent and your suggestions highly appreciated.
    Thank you,
    Ian

    Hi Ian,
    From replication perspective its follow the same methodology as ECC replication to HANA.
    You have to install DMIS 2011 component on your APO system to communicate with SLT.
    For more details you can refer SAP note: 1759156
    Cheers

  • SAP R/3 Mass User Master Record Update

    I am currently involved in a project to update specific fields of the User Master Record for all applicable records from an external source.
    For the mass change i was thinking along the lines of CATT, BDC/ABAP or Table Changes. Obviously table changes was out first because of the dangers of causing inconsistencies among the SAP standard tables. CATT i think is not really made for this purpose but could probably do the job, and BDC or ABAP is probably the right way to go.
    Any suggestions/comments?
    Thanks

    hello Ashley,
    All 3 options are good.
    I personally use CATT for this purpose however it depends on what your trying to update. SU10 is another option but its drawback is that you can use only 1 value at a time. In CATT however you can use different values for different users. Also time involved in creating CATT tool is very less.
    Obviously you have options like BDC/LSMW and ABAP also with you.
    Regards.
    Ruchit.

  • Master table for SAP

    Hi,
    Can any one please let me know the standard SAP user table.
    Regards,
    lakshmi.

    USR01     --                     User master record (runtime data)  
    USR02     --                     Logon Data (Kernel-Side Use)       
    USR03     --                     User address data                  
    USR04     --                     User master authorizations         
    USR05     --                     User Master Parameter ID           
    USR06     --                     Additional Data per User           
    Reward Points if useful.

  • Insert data in a user master data Table

    Hi every body,
    I've created a User Master data table named 'MyTable'. i want to add data to this table but there is an error which occur : 'to generate this. First Define the Numbering Series in the Administration Module'.  I want to add data to this table using C# code,  without using UDO.
    Is it possible?
    Thank you for helping me
    Haifa

    Hi,
    thank you for your answer.
    I didn't understand very well, i will ask the question in an other way.
    it is possible to insert records in a master data table by using the code C#
    I mean :
                usertable = _Company.UserTables.Item(tablename);
                usertable.Code = code;
                usertable.Name = name;
                usertable.UserFields.Fields.Item("U_ContCode").Value = ContCode;
                usertable.UserFields.Fields.Item("U_CardCode").Value = CardCode;
                lRetCode = usertable.Add();
    without encountering the problem of numbering series.
    Haifa

  • Error: Another User Modified Table in Service Call in SAP B1 8.8 PL9

    Hi Experts,
    We are facing an issue in SAP B1 8.8 Patch 9 in Service Call.  When taking service calls continuosly, when we try to update every 3rd Service Call the following error is coming
    "Another user or another operation modified data; to continue, open the window again  'Service Calls' (OSCL) (ODBC -2039)  [Message 131-183]".
    Only 1 user is using the service call.. Several times we logged out and logged in, still the same error is coming,
    Kindly help to solve this.
    Regards
    Sundaram

    Hi
    You may check this thread. It might be a bug.
    Re: another user modify table error on Service call
    Thanks,
    Gordon

  • User Master Records/Tables - Exporting User tables for Recovery

    Hi there,
    Work in the Security area ....Outside of the client export of SCC8 for user master records/roles. Is there another recommended method for saving user tables that can be re-imported on the chance of deletion of users and roles and can be selectively re-imported if needed. For instance if a particular User Grouip was deleted with X number of users, could that be re-imported by a selective means ? SU10 is handled delicately in prod when used but unwanted results still occur. Approaches appreciated ..

    Hi,
    Try the following..
    BAPI_USER_CREATE         Create a User
    BAPI_USER_CREATE1       Create a User 
    Hope that helps! 
    Regards,
    Tanveer
    <b>Please mark helpful answers</b>

  • User Master Record : Which table the Email Id stored?

    Hi All,
    Which table and what is the field the Email id stored in.
    I checked the USR02 and some other tables and I did't find it.
    Thanks.
    Rgds,
    Raj.

    >
    John Navarro wrote:
    > I run into to this problem many moons ago and the solution is to run tcode SQVI.
    >
    > Create a query and join the following tables (USR21 & ADR6) and use the relevant fields.  I have the complete steps documented in a procedure if you need it posted on this thread.
    >
    > Let me know and good luck!
    OK - Here it is!  I forgot I got the step by step procedure on this forum
    You can get the information through one more option also. In case of function module you need to execute the module again and again for each user or may be need to write a report. I would like to suggest you an alternative. That is making use of queries.
    1. Go to transaction SQVI.
    2. In the input field Quick View give the any name for query for example Z_EMAIL_ADD.
    3. Choose create option. In the resulting pop up give description in Title field. In data source choose TABLE JOIN. Select Basis mode.
    4. In the next screen choose INSERT TABLE pushbutton and in the pop up give USR21. Then again choose INSERT TABLE pushbutton and this time give ADR6.
    5. Now go back using back arrow or F3.
    6. Now in the new screen you will be under the tab strip List fld select.. From that entries under available filed (on right hand side) select User name in user master record and the first entry for Internet mail (SMTP) address. Now using single arrow pushbutton pointing towards left move these fields to tabstrip List fld select.
    7. Now go to tabstrip selection filed. As done in step 6 move User name in user master record under it.
    8. Save the changes and go back. A pop up will come asking you to save quick view Z_EMAIL_ADD. Choose yes.
    9. Now execute the query. In the input field you can give one user or multiple users at a given time.
    This approach is easier and time saving in my opinion and gives output in desirable format.
    Regards,
    -John N.

  • How  and where does SAP standard programs update the master tables...

    Hello there,
    How  and where does SAP standard programs update the master tables...
    to be precise.. if a (any) transaction occurs  the programs behind it holds the data in temporary structures.
    where and when does it get updated in the master table.
    can anyone tell me how it happens?
    I Know that from the where used list one can find the corresponding table but most of the time it wont suffice
    I am expecting a proper answer.
    Santosh B

    Hello Santosh,
    you need to do some self-reading on the following topic
    Updates in the SAP System (BC-CST-UP)
    http://help.sap.com/saphelp_47x200/helpdata/en/e5/de86e135cd11d3acb00000e83539c3/frameset.htm
    Regards,
    Siddhesh

  • Loading data from SAP BW standard table to master data text

    Hi,
         Can anyone please tell me the steps to load data from SAP BW standard table to master data text?
    How should the data source be created?
    Thanks in advance.

    Hi aparajith,
    Have you loaded the master data attr ?
    ECC Steps
    then load the attr text
    create the ztable using standard table using generic data source using table function.
    there you can select the which field you required
    check the data in RSA3
    BI STEPS: -
    check the source system connection.
    replicate the data source
    create of find the master data object for text (including attr)
    map the transformation
    run the info package
    create the DTP.
    check the data in target object.
    Thanks,
    Phani.

Maybe you are looking for

  • Upgraded to tiger, mail gets hung up on importing old messages.

    I had my pwrbk tuned up and upgraded to Tiger. All files were swept onto a dvd for back up and just plopped back on again after the install. When I click on mail to 'mail' it wants to import my "existing Mail messages into the new version"... so I 'c

  • Error "  is not a time unit" while updating table that is Copy of CATSDB

    Hi, We have created a new table which is a copy of CATSDB and has some more Fields in it. While inserting records to the table, it is throwing the error saying "  is not a time unit". Can you please provide some info on this ? This is a complete cust

  • Slow receipt of e mail

    My e mail does not show up on my Galaxy lll until hours after it is actually received in my e mail account (on my computer etc).  Is there a setting adjustment I need to make so that I receive them in real time.  Text messages work fine in real time.

  • Remittanc advice by email and also by printing

    Hi Experts, Our requirement is that email needs to be triggered for all remittance advices and simultaneously printing needs to carried out for those vendors with no email address or invalid email address. We have activated BTE 2040 to trigger the em

  • Is Windows 2003 Server supported as a server that MA can migrate?

    Will Migration Accelerator support Windows Server 2003 as a source server that it can migrate to Azure? Tom Hickling