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>

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 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

  • 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

  • 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

  • Table for transport history

    Hi Experts,
    I want to know which table stores the information about the history of an object's transports. I am looking for which transport were created and moved for a specific query.

    Hi There,
    You need to use two tables for this.
    1. RSRREPDIR - Identify COMPUID for your query name.
    2 E071 - In SE16 of this table pass these values :
                 PGMID = R3TR, OBJECT = ELEM, OBJ_NAME = COMPID from above table.
    Output from E071 will give you the transport request/task number(s) for this query.
    Cheers.
    Vasu

  • 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

  • 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

  • Storeage table for user exits

    once we add additional functionality to predefined tranction(enchancenement) where it will be saved?(is there any table for store that data . plz help me

    once we add additional functionality to predefined tranction(enchancenement) where it will be saved?(is there any table for store that data . plz help me

  • Table for User language

    Hello friends,
    Where is user language stored in BW. I am looking for table that stores the language entered thru SU01.
    Thanks
    Rahul

    Hi Rahul,
    Check table USR01.
    Hope this helps...

  • Table for user name

    All,
    In the GR slip, ' Issued By : ' is coming as SAP LOgon name .
    I need this as the name of person which will put against this LOgon name .
    Can anyone tell me the table  and field for this to pick ?
    Kindly advise.
    regards

    Hello Sandeep,
    Each use will be assigned with "Person number" (field name PERSNUMBER) and that name against person number will be available in table ADRP. Also you need to filter out for Person group = BC01 (SAP User)
    Hope this helps.
    Regards
    Arif Mansuri

  • 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

  • Table for user for idoc creation

    Hi
    can anyone tell tell me the table where i can find the idoc is created by
    I looked at edids and edid4
    edids has username but for same idoc i have several usernames
    i want to know the user who creted the idoc may be i need status 50 for out bound right ,then that user is the actual user created .
    if iam right what about the inbound.
    if iam wrong please let me know
    Thanks

    HI,
    look at the Table EDIDS ..
    Field <b>UNAME</b>

  • Audit query for user history in OIM 11g

    I would like to know if we can come up with a query to get the details of when and by whom a user has been modified over a certain time frame.
    Thank you in advance.
    Edited by: 937937 on Jan 30, 2013 1:00 PM

    You should be able to use the OOTB reports for the User Profile History. Here is the query that is used in the report:
    SELECT DISTINCT UPA_USR.USR_LOGIN AS USERID,
    upa_usr.usr_first_name as FirstName,
    upa_usr.USR_LAST_NAME as CurrentLastName,
    upa_usr.ACT_NAME as Organization,
    upa_usr.USR_MGR_FIRST_NAME as ManagerFirstName,
    upa_usr.USR_MGR_LAST_NAME as ManagerLastName,
    upa_usr.USR_MGR_LOGIN as ManagerUID,
    upa_usr.USR_STATUS as Status,
    upa_usr.USR_EMP_TYPE as EmployeeType,
    upa_usr.create_date as IdentityCreationDate,
    UPA_USR.UPA_USR_EFF_FROM_DATE AS EFFECTIVEFROMDATE,
    UPA_USR.UPA_USR_EFF_FROM_DATE AS EFFECTIVEFROMTIME,
    f1.field_name as UserProfileParameterName,
    f1.field_new_value as UserProfileParameterValue
    FROM UPA_USR LEFT OUTER JOIN UPA_GRP_MEMBERSHIP
    ON upa_usr.upa_usr_key = upa_grp_membership.upa_usr_key,
    upa_fields f1
    WHERE UPA_USR.UPA_USR_KEY = F1.UPA_USR_KEY
    And f1.field_name not like '%Key%'
    And (nvl(:p_varchar_FN, ' ') = ' ' or upper(upa_usr.usr_first_name) like upper(:p_varchar_FN))
    And (nvl(:p_varchar_LN, ' ') = ' ' or upper(upa_usr.usr_last_name) like upper(:p_varchar_LN))
    And (nvl(:p_varchar_UID, ' ') = ' ' or upper(upa_usr.usr_login) like upper(:p_varchar_UID))
    And (nvl(:p_varchar_Org, ' ') = ' ' or upper(upa_usr.act_name) like upper(:p_varchar_Org))
    And (nvl(:p_varchar_GrpN, ' ') = ' ' or upper(upa_grp_membership.ugp_name) like upper(:p_varchar_GrpN))
    And (nvl(:p_varchar_MgrID, ' ') = ' ' or upper(upa_usr.USR_MGR_LOGIN) like upper(:p_varchar_MgrID))
    And (nvl(:p_varchar_Status, ' ') = ' ' or upper(upa_usr.usr_status) like upper(:p_varchar_Status))
    AND (NVL(:P_VARCHAR_EMPTYPE, ' ') = ' ' OR UPPER(UPA_USR.USR_EMP_TYPE) LIKE UPPER(:P_VARCHAR_EMPTYPE))
    AND upa_usr.upa_usr_eff_from_date between :p_date_UDateFrm And :p_date_UDateTo
    AND NVL(upa_grp_membership.upa_grp_eff_from_date,:p_date_GDateTo) <= :p_date_GDateTo
    AND NVL(UPA_GRP_MEMBERSHIP.UPA_GRP_EFF_TO_DATE,:p_date_GDateFrm) >= :p_date_GDateFrm
    Order by upa_usr.usr_login, EffectiveFromDate, EffectiveFromTime
    -Kevin

Maybe you are looking for

  • Change invalid user password message

    I need to customize the page when a user enters an invalid username or password. When a user enteres an invalid username or password I want to have the user to be in the same page with a message that says, "you entered an invalid username or password

  • Firefox 19 suddenly became very slow after using it for about an hour.

    I've been using firefox 19 since it came out and have experienced no problems. Now today after about an hour of using the browser it has become so slow to the point where it becomes unresponsive for about ten seconds when I try to switch to a differe

  • Unable to update ipad to iOS4.3

    I have already update my iTunes to the latest version and it still said unable to update the ipad with the error code 3194.

  • I can't upgrade my iPhone software to version 5.1.1

    I can't seem to update my iPhone 4.3 version to 5.1.1. I have iTunes version 10.6, but every time I want to update it, it says Time out and an error occurred. What should I do? Thank You

  • Hp pavilion h9-1170t, installing windows 7 problems

    on cmos i can see everything< h drive, dvd, etc, but when try to installing windows 7,  windows is not find any hard drive, my hp has 256 ssd hard drive,  help