Query to find the request group associated with a responsibility

Hi All,
I have to attach a report to around 30 responsibilities. For this I will have to find the request group for each responsibility and then add the Concurrent Program for the report in the corresponding request group.
Can anyone help me with a query to find the request group associated with a responsibility.
Regards,
SK

Just to add to the query above, if you want to see request group along with request_group_id you do join as follows
SELECT frv.responsibility_name
,frg.request_group_name
FROM fnd_request_groups frg,
fnd_request_group_units frgu,
fnd_responsibility_vl frv
WHERE 1 = 1
AND frgu.request_group_id = frg.request_group_id
AND frv.request_group_id = frg.request_group_id
ORDER BY responsibility_name
Thanks
Shailendra

Similar Messages

  • Finding the Request group of a report

    How do I find which request group an oracle report or a PL/SQL procedure is attached?

    Hi
    Do use the below query to get the Request Group Name and Responsibility Name...
    input must be Report name
    SELECT
    A.RESPONSIBILITY_KEY ResponsibilityName,
    B.REQUEST_GROUP_CODE RequestGroupName
    FROM FND_RESPONSIBILITY A,
    FND_REQUEST_GROUPS B,
    FND_REQUEST_GROUP_UNITS C,
    FND_CONCURRENT_PROGRAMS_VL D
    WHERE A.REQUEST_GROUP_ID = B.REQUEST_GROUP_ID
    AND C.REQUEST_GROUP_ID = B.REQUEST_GROUP_ID
    AND C.REQUEST_UNIT_ID = D.CONCURRENT_PROGRAM_ID
    AND D.USER_CONCURRENT_PROGRAM_NAME LIKE <<Report name >>
    Regards
    Yram

  • How to find the Display Template associated with a JSP ?

    Hi All,
    We have a requirement to alter the text on few buttons and headers for a Published Site. I have modified the Seeded JSP and saved as xxseeded.jsp and deployed in $OA_HTML. Now i want to add this custom JSP to the Display Template but i don't know how to find the Display Template Associated with the Seeded JSP. So, i need to know the Programmatic access name for the Display Template which uses this Seeded JSP as Source file. Is there any where i can check?
    Thank you

    Hi,
    Use the below queries
    Use the below query to get the Template name for the associated JSP file.
    SELECT I.ACCESS_NAME, A.FILE_NAME FROM JTF.JTF_AMV_ATTACHMENTS A, APPS.JTF_AMV_ITEMS_VL I, IBE.IBE_DSP_LGL_PHYS_MAP M, IBE.IBE_MSITES_TL S WHERE A.ATTACHMENT_ID = M.ATTACHMENT_ID AND I.ITEM_ID = M.ITEM_ID AND M.MSITE_ID = S.MSITE_ID and a.FILE_NAME like 'Jsp file name here'
    Same query can be little modified to get the File name from the Template name.
    SELECT I.ACCESS_NAME, A.FILE_NAME FROM JTF.JTF_AMV_ATTACHMENTS A, APPS.JTF_AMV_ITEMS_VL I, IBE.IBE_DSP_LGL_PHYS_MAP M, IBE.IBE_MSITES_TL S
    WHERE A.ATTACHMENT_ID = M.ATTACHMENT_ID AND I.ITEM_ID = M.ITEM_ID AND M.MSITE_ID = S.MSITE_ID and I.ACCESS_NAME like ‘template name here’
    Thanks
    Pradeep
    Edited by: Pradeep Kalyan on Feb 9, 2012 9:40 PM

  • EA Could Not Find The .html File Associated With...

    After naming folder names, I now get the "EA could not find the .html file associated with..." message when I open the .edge file. When I open the .an file, I have all elements and the timeline are gone! How can I restore it? Surely, it is just a question of changing a path, or? Please help. Thanks!

    From the File > Open menu, browse to the that same folder (the newly renamed one), and select the .html file.
    Darrell

  • How can i find the VBRP-MATNR associated with a particular  BSET-BELNR.

    Hi Experts,
    How can i find the VBRP-MATNR associated with a particular  BSET-BELNR.
    Regards,
    Siva
    Edited by: siva kumar on Nov 13, 2008 8:11 AM

    Hi Siva,
    Small correction here as said by our friend Tao.
    vbrp has no relation with bkpf.use vbrk.
    vbrk-bukrs = bkpf-burks,
    vbrk-belnr = bkpf-belnr,
    vbrk-gjahr = bkpf-gjahr.
    Regards,
    Vvieks

  • Where can I find the phone number associated with my 3G iPad?

    How do I find the phone number associated with my iPad?  We'd like to sell it, so we want to cancel the 3G service, but the AT&T website asks for the phone number. 

    I don't have the 3G ... but is there a phone number?  Can you make phone calls with it ... I was told there is not phone service from the iPad when I get my iPad1?
    But did you check in
    Toolbox -> Phone -> My Number
    or
    Toolbox -> General -> ????
    That's where it is on my iPhone ... so maybe some variation of that on the iPad.  Most likely somewhere under Network, the third box down in General?

  • How to find the Standard Program associated with a Standard IDOC

    Hi,
          I am going work on enhancing the standard IDOC. Any body can suggest how to find a standard pogram associated with a Standard IDOC. And can any body send some exaple code for extending a standard IDOC and to implement the logic in the standard program .....

    Hi,
    For outbound IDoc the program can be found:
    1) For master IDoc via transaction BD60. Here for the message type you can find the function module used to generate the IDoc. Within this function module you can find the user exit where you can code your logic.
    2) For IDocs with message control (output control) we maintain settings for proces code in WE41. This process code will lead to outbound IDoc generation program.
    For Inbound IDoc the program can be found:
    Via WE42 where inbound process and its related inbound function module is maintained.
    In each cases above we can go the function module and find the customer exit where idoc enhancement logic can be coded.
    For extending IDoc look at the following links:
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/dc/6b7d6243d711d1893e0000e8323c4f/content.htm">Extending IDoc - SAP help</a>
    It can be summarized as follows:
    Enter transaction WE30 (ALE->Extension-> IDOC types->Maintain Idoc type)
    - Type in your name of the extended IDOC type (usually starting with 'Z') and click on the Basic IDoc type, click the create icon.
    - Click on Create new and enter a description and press enter.
    - Click on ZIDOCTYPE01 and then on the Create icon.
    - Enter ZIDOCTYPE as the segment type, click on Segment Editor.
    - Enter a description for your segment type and create.
    - Enter a description for your segment, enter each field required in your IDoc and press enter to validate.
    - Save and generate, press back
    - To release the segment choose Goto, Release from the menu.
    - Check the box on the line of your segment.
    - Save, back and enter.
    - Your Idoc type structure should be displayed with your new segment.
    - Save and back.
    - To release the Idoc type choose Extras, Release type from the menu and Yes.
    Hope this helps.
    Regards,
    Gajendra.

  • Finding the Request group of a report in APPS

    How do I find which request group an oracle report or a PL/SQL procedure is attached in Oracle APPS?

    Please try this
    SELECT FRG.REQUEST_GROUP_NAME, FE.EXECUTION_FILE_NAME, FE.EXECUTABLE_NAME
    FROM FND_REQUEST_GROUP_UNITS FRGU, FND_CONCURRENT_PROGRAMS FCP , FND_REQUEST_GROUPS FRG
                   , FND_EXECUTABLES FE
    WHERE FRGU.REQUEST_UNIT_ID = FCP.CONCURRENT_PROGRAM_ID
    AND FRGU.REQUEST_GROUP_ID = FRG.REQUEST_GROUP_ID
    AND FE.EXECUTABLE_ID = FCP.EXECUTABLE_ID
         AND FE.EXECUTION_FILE_NAME = <REPORT NAME>

  • Query to find the parent group name

    what is/are the table name that i should use to find the parent name of the job?
    thank you,
    warren

    Hi Warren,
    The parent group name (dbo.jobmst.jobmst_prntname) can be found within jobmst table.
    For example, the below query will return parent name of a specified job:
    SELECT dbo.jobmst.jobmst_prntname
    FROM dbo.jobmst
    WHERE dbo.jobmst.jobmst_name = 'Enter name of job here'
    BR,
    Derrick Au

  • How do I find the logon name associated with a roaming profile folder

    Hello,
    We have Server 2003 R2 Enterprise and Windows 7 Enterprise workstations.
    We normally name the profile path \\server\profiles\%username% and that assigns the users logon name to the profile folder.
    Someone created a user account and incorrectly named the profile path so the folder name and user logon name do not match. I am trying to find out who owns the folder without taking ownership of the folder (by default, we did not include Administrators in
    NTFS permissions).
    Is there a way I can find out what the user logon name for the profile folder is without taking ownership of the folder?
    Thanks in advance.

    if there is a chance that the user/owner is still configured with this folder as profile attribute, check the profile attributes of you users for the user account with the matching profile folder attribute.
    check the script gallery, or similar, for a script which will list out all user account profile attributes to a text file, then search/browse that text file for the matching folder name -> user account.
    I have some older scripts tucked away which do ADSI queries in VBscript, to dump out the home_folder and profile_folder attributes for every user in our AD. This helps when we are re-shuffling home_folders or profile_folders from one server to another, etc.
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Downloaded a music file which originally played through my playlist, but now says it cannot find the original file associated with it.  Takes me to the root directory, but this does not help.

    Downloaded a music file which originally played through my playlist in iTunes but now it comes up with a message that the original file cannot be located although the file appears in the play list.  It asks if it should search for the relevant file which takes me to the root directory and is no help.

    Hello gordon175
    You would need to locate the song on your computer to link them back up so it will play. If you cannot find it and it was purchased from the iTunes Store, you can delete the track and download it again for free.
    iTunes: Finding lost media and downloads
    http://support.apple.com/kb/ts1408
    Downloading past purchases from the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/ht2519
    Regards,
    -Norm G.

  • Groups associated with each query

    Hello Everyone,
    We have multiple queries in our data model.
    The Report Wizard requires to choose data for the layout by group name.
    We are wondering how to check the names of the groups associated with each
    query prior to entering the Report Wizard.
    Thanks in advance,
    S!G
    Edited by: Sea!Gull on Feb 10, 2011 9:40 AM

    Happy St. Partick's Day, Abdetu, and all!
    We used Wizard. So, we are wondering step by steps procedures.
    Thank again, Abdetu
    We wish to solve the issue on St. Partick's Day.
    Happy St. Partick's Day!
    Edited by: Sea!Gull on Mar 17, 2011 8:16 AM

  • Query to find the latest record with respect to the current status

    Dear gurus
    I have the following data in a table
    Customernum
    bkcode
    reqtdate
    Prevstat
    currstat
    The data will be like this
    CustomerNum bkcode reqdate prevstat currstat
    5900 1 03-Aug-12 0 1
    5900 1 06-Aug-12 1 0
    5900 5 22-Jun-12 0 1
    If a customer has an issue to solved, a record is added with bkcode , register date and currstat will be 1
    If the issue is resolved for the bookingcode,a new record is added, the currentstatus will become 0. and prev stat will show 1. Row no 1 and 2 reflects this case
    If this table is queried for finding the unresolved issues. the output should be only the Last row of the above example. since issue with bookingcode 1 has been resolved
    I have trying hard to get this thing confused what to use Lead or Max
    Kindly guide me

    Hi,
    one way here:
    WITH mytable(CustomerNum, bkcode, reqdate, prevstat, currstat)
    AS
       SELECT 5900, 1, TO_DATE('03-Aug-12', 'DD-Mon-YY'), 0, 1 FROM DUAL UNION ALL
       SELECT 5900, 1, TO_DATE('06-Aug-12', 'DD-Mon-YY'), 1, 0 FROM DUAL UNION ALL
       SELECT 5900, 5, TO_DATE('22-Jun-12', 'DD-Mon-YY'), 0, 1 FROM DUAL
    SELECT CustomerNum, bkcode, reqdate, prevstat, currstat
      FROM (SELECT a.*
                 , ROW_NUMBER() OVER (PARTITION BY CustomerNum, bkcode
                                           ORDER BY reqdate DESC) AS rn
              FROM mytable a
    WHERE rn=1
       AND currstat=1;
    CUSTOMERNUM     BKCODE REQDATE     PREVSTAT   CURRSTAT
           5900          5 22-JUN-12          0          1Regards.
    Al
    Edited by: Alberto Faenza on Dec 18, 2012 5:23 PM
    Changed again!! Previous logic was wrong

  • Query to find the long running concurrent requests morethan 2 hours

    Can any one please provide the " Query to find the long running concurrent requests which are running more than 2 hours"

    You need to find the different between the current time/date and FND_CONCURRENT_REQUESTS.ACTUAL_START_DATE for the running requests.
    More details can be found in the following notes:
    Note: 187504.1 - bde_request.sql - Process and Session info for one Concurrent Request (11.5)
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=187504.1
    Note: 134035.1 - ANALYZEREQ.SQL - Detailed Analysis of One Concurrent Request (Release 11 and up)
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=134035.1
    Note: 751438.1 - How To Check List , Start And End Dates Of A Parent Concurrent Request And All Childs
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=751438.1

  • What's the query to find all requests' name of all modules EBS R12.1.3??

    What's the query to find all requests' name of all modules EBS R12.1.3??
    Regards:
    Shahzad M. Saleem

    Dear rioman !!!
    Thanks!!
    Regards:
    Shahzad M. Saleem

Maybe you are looking for