Queries: user id and employee number ,and reponsibility and menu exclusions

Hi,
I have two different queries that are requested and I do not have a document to guide me in the tables relationships.
Query 1:
need to represent the reponsibility name asscociated with the name of menu and the functions excluded from that menu in the responsibility.
i was only able to retrieve the reponsibility name and the menu name, i do not know what is the table that contains the menu exclusion and how can i link it to the responsibility.
Please help, my query so far is as follows:
SELECT DISTINCT e.application_name, a.responsibility_name
--,a.LANGUAGE,
--,b.responsibility_key
, c.user_menu_name
,c.DESCRIPTION
,fme.prompt, fme.description
,fme.MENU_ID,frf.ACTION_ID
FROM apps.fnd_responsibility_tl a,
apps.fnd_responsibility b,
apps.fnd_menus_tl c,
apps.fnd_menus d,
apps.fnd_application_tl e,
apps.fnd_application f,
apps.fnd_menus_tl apm,
fnd_menu_entries_tl fme,
FND_RESP_FUNCTIONS frf
WHERE a.responsibility_id(+) = b.responsibility_id
AND b.menu_id = c.menu_id
AND b.menu_id = d.menu_id
AND e.application_id = f.application_id
AND f.application_id = b.application_id
AND a.LANGUAGE = 'US'
and apm.menu_id = fme.menu_id
and fme.MENU_ID(+)=c.MENU_ID
and b.RESPONSIBILITY_ID=frf.RESPONSIBILITY_ID
Query 2 :
It is required to represent the employee info associated with their associated reposnsibilities.
i could not link the employee number to the user id.
how can i join the two tables: fnd_user and per_all_people_f
PLEASE HELP ME.

Hi,
need to represent the reponsibility name asscociated with the name of menu and the functions excluded from that menu in the responsibility.
i was only able to retrieve the reponsibility name and the menu name, i do not know what is the table that contains the menu exclusion and how can i link it to the responsibility.See these documents.
Note: 948512.1 - Checking Functions Associated with a User Menu or a Responsibility
Note: 468013.1 - Code Snippet for querying responsibilities and users in 11i Applications
Query 2 :
It is required to represent the employee info associated with their associated reposnsibilities.
i could not link the employee number to the user id.
how can i join the two tables: fnd_user and per_all_people_f Refer to the following docs for the requested query.
Note: 227103.1 - How Do I Find Person_Type Information in 11.5
Note: 332904.1 - How to Find Employees Who Have Logged In
Note: 332794.1 - Employee & User E-mail Syncronization
Regards,
Hussein

Similar Messages

  • Migration of the User exits and reports to new ECC 6.0 from 4.6c

    Hello Everyone,
    we have lot of user exits and menu exits in 4.6c system... now we are implementing new ECC6.0 without much changes in Business process(as is)... my question is...is it possible to bring all the user exits reports and smartforms to new ECC6.0 using some transport mechanism...or do we need to copy and paste(upload and download) from the old system....
    regards,
    Gayatri Gaddam.

    Gayatri,
    check the fallowing similar link
    https://forums.sdn.sap.com/click.jspa?searchID=1744490&messageID=3040343
    ~~Guduri

  • Identifying Tables - Employee number field and email address field

    We need to identify specific tables for data extraction purposes. 
    The tables we need are - "employee number" tables (used in SU01) and "email address" field - (techinical info. field name - SMTP_ADDR)
    Thanks.
    Marie

    If you are looking for email addresses tied to user master records, then the table is ADR6,  you must link to this thru USR21.
    * Get email address
      clear smtp_address.
      select single adr6~smtp_addr into smtp_address
                    from usr21
                       inner join adr6
                            on  usr21~addrnumber = adr6~addrnumber
                           and  usr21~persnumber = adr6~persnumber
                                   where usr21~bname = sy-uname.
    Not sure that I've ever seen an employee number tied directly to a user in SU01.
    Regards,
    Rich Heilman

  • Link between User Name in user table and Personla number in HR

    Hi
    Could any one let me know the link between the User Name field in User table and Personal number in HR table. Pls let me know the table name which shows the relation between these two fields.
    Regards,
    Ram

    HI Ram
      The table which contains this data is PA0105. The value of field USRTY should be '0001'. For example if u want to get the UNAME related to an employee.
    SELECT usrid
      FROM pa0105
    WHERE pernr EQ p_pernr
          AND usrty EQ '0001'.
    Please award points if u found this helpful

  • User Accounts and ORA-01722: invalid number error

    Hello,
    I have been using Express for a month or so now but have very limited knowledge of how it works.
    My Problem:
    I have a listing screen for user records which creates records in table QAS_USERS.
    When I add a record it saves the data OK and put the record in the list.
    When I click on the record in the list it takes me to the edit screen and I can change
    the details and it works OK and all the changes get saved to the database.
    On the data entry screen I have a list of the User Groups so I can select what group
    the user will be in, usual details in username, fullname, email address, password etc..
    I then added a routine to create a USER in the APEX Manage USERs.
    It creates the record in my table QAS_USERS and it creates a APEX User Account with
    the correct details and the record is displayed in the list.
    So far so good.
    Now the errors start:
    1. When I look at the User Account in Administration -> Manage Application Express Users
    most of the details have been added but the User Group does not get allocated.
    2. The record I created in QAS_USERS appears in the list on my listing screen but when
    I click on the Edit Icon on the left of the list I get the following error appear
    when the screen changes to the edit screen:
    ORA-01722: invalid number
    Unable to fetch row error
    QAS_USER Table:
    ID NUMBER
    CREATED_ON DATE
    CREATED_BY VARCHAR2(10)
    CHANGED_ON DATE
    CHANGED_BY VARCHAR2(10)
    ACTIVE VARCHAR2(3)
    USERNAME VARCHAR2(10)
    FULLNAME VARCHAR2(30)
    TEAMLEADER VARCHAR2(3)
    TEAMLEADER_ID NUMBER
    LAB NUMBER
    DIRECTOR VARCHAR2(3)
    ACTION_MANAGER VARCHAR2(3)
    SDM VARCHAR2(3)
    GM VARCHAR2(3)
    EMAIL_ADDRESS VARCHAR2(50)
    PASSWORD VARCHAR2(12)
    SDTL VARCHAR2(3)
    FIRSTNAME VARCHAR2(30)
    LASTNAME VARCHAR2(30)
    GROUP_ID NUMBER
    USER_ID VARCHAR2(20)
    Process Script to create the Express User Account:
    Declare
    group_id NUMBER;
    BEGIN
    group_id := APEX_UTIL.get_group_id (:P15_GROUP_ID);
    APEX_UTIL.CREATE_USER (
    P_USER_NAME => :P15_USERNAME,
    P_FIRST_NAME => :P15_FIRSTNAME,
    P_LAST_NAME => :P15_LASTNAME,
    P_WEB_PASSWORD => :P15_PASSWORD,
    P_EMAIL_ADDRESS => :P15_EMAIL_ADDRESS,
    p_developer_privs => 'ADMIN',
    p_group_ids => group_id);
    END;
    If any one has any ideas I would be very grateful.
    Regards,
    Simon.

    Hi,
    It could be that this is because you are using SYSDATE which contains the time as a fraction rather than TRUNC(SYSDATE) which just contains the current time. It could be that your working_dates_between raises this error.
    However, your formula is far more complicated than it needs to be.
    Firstly, you want to look at the date window ADD_MONTHS(TRUNC(SYSDATE), -6) to TRUNC(SYSDATE). Then you want to look at the portion of the absence that falls in the date window. This is GREATEST(Absence Attendance.Actual Start Date, ADD_MONTHS(TRUNC(SYSDATE), -6)) to LEAST(NVL(Absence Attendance."Actual End Date",TRUNC(SYSDATE)), TRUNC(SYSDATE)). You may need to add 1 to the absence end date because this is the last day of their absence rather than the date they return. It depends how you calculate the days between the start and end
    date of the absence. You can create calculations for the start and end date of the absences within the 6 months time window. Create calculation AbsenceStart as
    GREATEST(Absence Attendance.Actual Start Date, ADD_MONTHS(TRUNC(SYSDATE), -6))
    and AbsenceEnd as
    LEAST(NVL(Absence Attendance."Actual End Date",TRUNC(SYSDATE)), TRUNC(SYSDATE))
    Then you need to only pick up absence that a part of the absence in your 6 month date window. You can use a condition in the workbook or a condition in a case statement to do this. You then need to calculate the difference between these dates and SUM all the values.
    SUM(CASE WHEN AbsenceEnd >= AbsenceStart THEN WORKING_DAYS_BETWEEN(AbsenceStart, AbsenceEnd) END)
    That's it. Not so complicated after all.
    Rod West

  • Change history of User for Business Partner Number attaching and removing

    Hi Experts
    Is there any t-code in SRM which will show change history of User for Business Partner Number attaching and removing.
    Thanks--
    Guru Prasad Dwivedi

    Serene,
    I am not too sure if anyone can DELETE a Payment Term linked to a BP. The system would not allow this.  If at all a Payment term was deleted, I don't think it can be traced.
    It is therefore very important to use Proper user authorization so that only people authorized to do certain things are doing it and not everyone.
    Suda

  • Access to business partners denied.User "so and so" is not a sales employee

    Hi all,
    I was trying to create a snapshot in outlook in a users computer but unfortunately the system displays a strange message:
    Access to business partners denied.User "so and so" is not a sales employee
    The user is a member of Sales Employees/Buyers-well what i mean is that the sales name is there but not user name ie Frank Blank is there but not FrankB for example.
    Any ideas ?
    Thank you,
    MB

    Hi Matthew,
    Interesting message as we use the O/I ad-on... on the EMD record, go to the Membership tab and add 'Sales Employee' under "Role" to the EMD record. Shot in the dark but that's all I got.
    HTH,
    Heather

  • How to analyze the navigation flow in Oracle Portal, Number of unique users, downloads and other estastisticas of use of the Portal and Documents

    Dear
    Experts, I have a very exciting demand, the board of a customer.
    I need to create an analytical application on Oracle Portal, UCM, Spaces, WebCenter, to inform me which quantitatively pages, url and documents are accessed.
    How to analyze the navigation flow in Oracle Portal, Number of unique users, downloads and other estastisticas of use of the Portal and Documents?
    I thought I'd create a ods with the data of Content Tracker and Google Analytics, and model the analysis through the BIEE.
    I ask, what is the standard solution that is used in these cases?
    Thank you
    Miki

    Dear
    Experts, I have a very exciting demand, the board of a customer.
    I need to create an analytical application on Oracle Portal, UCM, Spaces, WebCenter, to inform me which quantitatively pages, url and documents are accessed.
    How to analyze the navigation flow in Oracle Portal, Number of unique users, downloads and other estastisticas of use of the Portal and Documents?
    I thought I'd create a ods with the data of Content Tracker and Google Analytics, and model the analysis through the BIEE.
    I ask, what is the standard solution that is used in these cases?
    Thank you
    Miki

  • Account Number In Bank Account Transfer CM It Show For My User Only and Not

    Hi,
    Cash Management / Bank Account Transfers
    when make transfer From Bank Account Transfer and Enter Of All The Required Data
    And Search Bank Account Number It Show For My User Only And Not Show For Some Other Users
    With The Knowledge That The same responsibility For My User and All Users In Cash Resp.
    How to solve this problem ??
    Thanks,
    Mohamed Gamal
    Edited by: Mohamed Gamal on May 12, 2011 11:12 AM

    I bought MLB.tv premium through Apple TV however I was not provided with a user ID and password to be able to log in on to the computer to watch as I would if I bought directly from MLB.tv.  Is this a scam?  Anyone else have this issue.

  • Procedure to display the employee name and employee number

    Dear All
    can any one has the procedure to display the employee name and employee number from per_all_people_f.
    Regrads
    xyz

    can any one has the procedure to display the employee name and employee number from per_all_people_f. https://forums.oracle.com/forums/search.jspa?threadID=&q=per_all_people_f+AND+last_name+AND+employee_number&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • To download Contribute, how do I find SFTP number, user name and password?

    To download Contribute, am asked for a SFTP number, user name and password.  How do I find those?
    Am using a Mac Mini.

    I had been using an earlier version of Contribute, but when I upgraded to a Mac Mini, it no longer worked.   Then I got a new version on a trial basis.   When I tried to load to go full time with it a couple of days ago, I was asked for the SFTP number, user name and password.   I am trying to download and use on my Mac Mini in my home office.
    I just don't know what the SFTP number is or where I'd find it.   I'm an uninformed, non-technical computer user.
    Bob Vereen

  • Impact on roaming profile accounts if we Change User logon Name to Employee Number format in Active Directory for all User accounts

    I want to understand if we change User logon Name to Employee Number format in Active Directory for all User accounts, then what would be the impact on existing profile. Whether we need to change it manualy or it will connect to same profiles in terminal
    session.
    As i observed it create new profile after logon name changed to employee number where existing users profile settings get fails to load and prompt for new settings (such as outlook reconfiguration, share drive mapping etc.).
    Kindly let me know the proper process to overcome with this, how to connect same existing roaming profile with employee number format change.

    Hi,
    What if we change the user name of user account, will it have impact on roaming profiles.
    Yes, it will affect roaming profiles. Please rename the roaming profile folder as the new user account name, in addition, change the profile path in ADUC.
    Here is an related article below for you:
    How to Rename a Windows 7 User Account and Related Profile Folder
    http://social.technet.microsoft.com/wiki/contents/articles/19834.how-to-rename-a-windows-7-user-account-and-related-profile-folder.aspx
    Best Regards,
    Amy

  • Enable Submit Button at User Level and Disable at Block Level

    I developed a query_find form having empno field:
    Once the Employees‘s data is returned, then the new form that opens up should have the following fields.
    Employee Name
    Employee Number     
    Salary
    Address
    Notes
    and submit button.
    i have taken Employee Name,Employee Number,Salary,Address,submit button in xx_emp block.
    and i have given Query Data Source as xx_EMP_v view.
    and Notes related to xx_dum_emp block and for this query data source as xx_emp_details table(here notes field is contorl item)
    And i have written the following code in the submit button
    IF :xx_dum_emp.NOTES IS NOT NULL
    THEN
    INSERT INTO xx_emp_details
    (employee_number,
    employee_id,
    employee_name,
    address,
    salary,
    notes
    VALUES (:xx_emp.employee_number,
    :xx_emp.employee_id,
    :xx_emp.employee_name,
    :xx_emp.address,
    :xx_emp.salary,
    xx_dum_emp.notes
    END IF;
    commit;
    I have taken all the fields in the same canvas.
    Requirement:
    Submit Button should be enable for the specific user.For other users it should be in disable mode.
    so i have written code in POST_QUERY of the calling block as below:
    IF l_name = 'TESTUSER'
    THEN
    SET_ITEM_PROPERTY ('XXMZ_EMP.SUBMIT',
    enabled,
    property_true
    ELSE
         SET_ITEM_PROPERTY ('XXMZ_EMP.SUBMIT',
    enabled,
    property_false
    END IF;
    It's working fine.
    Suppose i query with empno 10 it will return Employees‘s data.So in that form i just enter some text in the Notes field
    then click on submit.then close the form.again query with the same number then i need to disble Submit button at this level.
    Is it possible to Disable the Submit Button?

    Hi Dhana;
    If your issue about Forms Customization please follow below and see its helpful:
    Subject: Customization in Oracle Applications Doc ID: 743490.1
    Subject: Forms Customization Doc ID: 69995.1
    Subject: Setup & Usage (Customization) Doc ID: 104697.1
    Please see "Oracle Developer Guide" available at:
    Applications Releases 11i and 12
    http://www.oracle.com/technology/documentation/applications.html
    Also see:
    http://oracle.anilpassi.com/forms-customization-steps-in-oracle-applications.html
    http://oracle.anilpassi.com/a-new-custom-form-in-oracle-apps.html
    I hope those are can be helpful for you
    Regards
    Helios

  • Find log on user employee number

    HI,
    How i can find employee number of user logon.
    in the system the user logon and employee num are diff.
    I try in SU01 with employee logon name but i don't find the number.
    Regards

    Hi,
    Check the infotype PA0105 or FM  HRWPC_BL_GET_USER
    Function module              HRWPC_BL_GET_USER
      Import parameters               Value
      USERNAME                        KA51151    ---- user logon id
      DATUM                           11-11-2008
      Export parameters               Value
      USR_PERNR                       00800841   -------- Pernr 

  • OIM 11gR2 - Identity console - Search Users Page.  Need to add employee number by default.

    Hi,
    I am new to oim 11gR2.  I have a requirement , to add the employee number field in the user search box. I do not want to use the Add Fields button to add the employee number search field.
    When any user goes to the search page, they must find the employee number field in the search box in addition to the other default fields like lastname, firstname, etc.  Is it achievable? Thanks in advance.  
    If possible.... can you please provide the steps to achieve it?.. thanks

    Karthik Perath
    Thanks for the answer....... but I guess you misread the question.  I am able to add new fields as columns to the search results table.  My problem is I want to add the searchable field to the query form.  Also, I do not want to use the Add Fields button (because that is a part of Saved Search which is Personalization and limited only to the creator) , I want the newly added searchable field. for example Employee Number ( which is not there by default)  to be made available to all the end users of Identity Self Service system..... Hope you got the problem... 

Maybe you are looking for