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

Similar Messages

  • 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

  • Athorization Object for User Parameter ID

    SAP gurus:
    In the project, we have introduced a Z_ user parameter.
    And users are allowed to flag this parameter on / off via su01 transaction.
    The question is: can we link user-parameter with authorization objects?
    In that case, we could further set-up authorizations to restrict which user-group can use this parameter
    and which group can not.
    Best regards.
    Vincent

    Hi,
    Please maintain a table which has got fields : User Id and Parameter Status (on/Off)
    Then you can put a restriction based on the values present in these table for any program.
    Please check the below link :
    http://help.sap.com/saphelp_40b/helpdata/en/e5/164b6e5733d1118b3f0060b03ca329/frameset.htm
    Regards
    Sreedhar Reddy

  • 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

  • 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 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 Name and User ID?

    Hi Experts,
    I hv User ID, that Logs in. So, I waanna to pull the corresponding Name.
    So,
    Wher Can I find these data i.e. Which is the best Table/source?
    ThanQ.

    Yo ucan alternatively use SUSR_USER_ADDRESS_READ.
    The exporting parameter user_address would have the full name of the user in the field name_text.
        DATA: user_address LIKE  addr3_val.
        CALL FUNCTION 'SUSR_USER_ADDRESS_READ'
          EXPORTING
            user_name                    = sy-uname
    *       READ_DB_DIRECTLY             = ' '
          IMPORTING
            user_address                 = user_address
    *       USER_USR03                   =
          EXCEPTIONS
            user_address_not_found       = 1
            OTHERS                       = 2.
        IF sy-subrc = 0.
           write:/ user_address-name_text.
        ENDIF.

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

Maybe you are looking for