Request group

Hi:
Some times I want to print a report (ex. 'XML Report for Contracts') but I don't know from which responsibility to run a CR. Would you please provide a way/script to find out that? thanks.

Check if below query helps:-
select frt.responsibility_name, frg.request_group_name,
frgu.request_unit_type,frgu.request_unit_id,
fcpt.user_concurrent_program_name
From fnd_Responsibility fr, fnd_responsibility_tl frt,
fnd_request_groups frg, fnd_request_group_units frgu,
fnd_concurrent_programs_tl fcpt
where frt.responsibility_id = fr.responsibility_id
and frg.request_group_id = fr.request_group_id
and frgu.request_group_id = frg.request_group_id
and fcpt.concurrent_program_id = frgu.request_unit_id
and frt.language = USERENV('LANG')
and fcpt.language = USERENV('LANG')
and fcpt.user_concurrent_program_name = :XX_PROG_NAME
order by 1,2,3,4
Thanks,
JD

Similar Messages

  • FNDLOAD: How to remove a concurrent program from a request group

    Hi,
    I want to remove a concurrent program from a request group using FNDLOAD utility. Since impacted environment is Production (controlled environment) I do not want to remove concurrent program manually from the request group. Is there a way to use FNDLOAD utility for this purpose or some other means?
    Environment: Oracle EBS R12.1.1
    OS: Linux
    Thanks,
    Nitin

    Hi,
    Unfortunately this CP cannot be disabled as it has to be removed from certain RGs but not all. Also removing it through RG forms is always an option but production gatekeepers won't allow to do that. I would have done that in a min.
    If FNDLOAD is not an option then I guess only other option is pl/sql script.
    Best regards,
    Nitin

  • How can we assign more than one request group to a responsibility?

    Hi
    Can anyone tell me how we can assign more than one request group to a responsibility?
    Thanks
    SS

    Hi SS,
    Its not possible, rather you should create a combination of Requests/RequestSets and create a new Request Group.
    Regards,
    Kiran

  • Plug-in Request Group field into the external authentication plug-in

    Hi all,
    I'd like to know if anyone has already tried to filter who can have the permission to call the external authentication plug-in setting it into Plug-in Request Group field.
    I've made some tests adding some users into groups OracleDASAdminGroup, OracleUserSecurityAdmins and groups that I've created under my DC settings. Unfortunatly, I've had no success.
    Is possible to do this?
    Thank you.
    Message was edited by:
    user571491

    Hi all,
    I'd like to know if anyone has already tried to filter who can have the permission to call the external authentication plug-in setting it into Plug-in Request Group field.
    I've made some tests adding some users into groups OracleDASAdminGroup, OracleUserSecurityAdmins and groups that I've created under my DC settings. Unfortunatly, I've had no success.
    Is possible to do this?
    Thank you.
    Message was edited by:
    user571491

  • How to use FNDLOAD to add program to request group?

    Is there a way to use FNDLOAD to add a program to System administrators > security > responsilibity > request.
    I have try to use the following command to downlod this information to load it to other place but no record saved in ldt file:
    FNDLOAD apps/apps1234 O Y DOWNLOAD $FND_TOP/patch/115/import/afcpreqg.lct PO_RESQUEST_GROUP_2.ldt REQUEST_GROUP REQUEST_GROUP_NAME="All Reports" APPLICATION_SHORT_NAME="XXPO"
    OR
    FNDLOAD apps/apps1234 O Y DOWNLOAD $FND_TOP/patch/115/import/afcpreqg.lct PO_RESQUEST_GROUP_3.ldt REQUEST_GROUP APPLICATION_SHORT_NAME="Purchasing" REQUEST_GROUP_NAME="All Reports" UNIT_NAME="XXPO_PUR_REQ"
    if i delete APPLICATION_SHORT_NAME="Purchasing" , it downloaded many seemingly not relevant data as follow:
    Downloading REQUEST_GROUP to the data file PO_RESQUEST_GROUP_3.ldt
    Downloaded REQUEST_GROUP All Reports CUN
    Downloaded REQUEST_GROUP All Reports IGS
    Downloaded REQUEST_GROUP All Reports PSB
    Downloaded REQUEST_GROUP All Reports CSE
    Downloaded REQUEST_GROUP All Reports AHL
    Downloaded REQUEST_GROUP All Reports ENI
    Downloaded REQUEST_GROUP All Reports OFA
    Downloaded REQUEST_GROUP All Reports XTR
    Downloaded REQUEST_GROUP All Reports SQLAP
    Downloaded REQUEST_GROUP All Reports PO
    Downloaded REQUEST_GROUP All Reports CHV
    Downloaded REQUEST_GROUP All Reports QA
    Downloaded REQUEST_GROUP All Reports CE
    Downloaded REQUEST_GROUP All Reports POA
    Downloaded REQUEST_GROUP All Reports MFG
    Downloaded REQUEST_GROUP All Reports CRP
    Downloaded REQUEST_GROUP All Reports WIP
    How can I confine "Application"? which is under the field "Group" and how can I download all application named "custom puchasing" next to "Name"?

    When migrating to another instance and want to add a concurrent program to a request group, I do it in two steps. Within a shell script, I call
    1 - FNDLOAD to load ldt file (concurrent program definition)
    2 - SQLPLUS to run an sql file that call FND API that install concurrent program into proper request group.
    ex # 1 :
    FNDLOAD $apps_user/$apps_pswd@$dbsid 0 Y UPLOAD $XDO_TOP/patch/115/import/xdotmpl.lct $XX_TOP/XX_PGM.ldt - WARNING=YES CUSTOM_MODE=FORCE >> $LOG_FILE 2>&1
    ex # 2 :
    sqlplus -s $apps_user/$apps_pswd@$dbsid @$XX_TOP/XX_PGM_REQ_GROUP.sql >> $LOG_FILE 2>&1
    XX_PGM_REQ_GROUP.sql content.
    IF NOT fnd_program.program_in_group('XX_PGM','Business Online','GL Concurrent Program Group','General Ledger' ) THEN
    fnd_program.add_to_group(program_short_name => 'XX_PGM',
    program_application => 'Business Online',
    request_group => 'GL Concurrent Program Group',
    group_application => 'General Ledger');
    COMMIT;
    END IF;
    Hope this might help.

  • Report/Program added to a request group

    I just noticed in my environment that whenever i add a report or program to a request group i don't get to see it when i want to run/submit the report or program.
    What could be the problem?

    try use
    CREATE OR REPLACE PACKAGE fnd_program AS
    -- Procedure
    --   ADD_TO_GROUP
    -- Purpose
    --   Add a concurrent program to a request group.
    -- Arguments
    --   program_short_name  - Short name of the program. (e.g. FNDSCRMT)
    --   program_application - Application of the program. (e.g. 'FND')
    --   request_group       - Name of request group.
    --   group_application   - Application of the request group.
    PROCEDURE add_to_group(program_short_name            IN VARCHAR2,
                        program_application          IN VARCHAR2,
                        request_group                 IN VARCHAR2,
                     group_application             IN VARCHAR2);for example
    begin
    fnd_program.add_to_group(
            'XXSHORTNAME',
            'XXPROGAPPL',
            'All Reports',
            'SQLAP'
    end;

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

  • 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

  • Concurrent request got deleted from a request group

    Hi,
    Somehow a concurrent request got deleted from a request group. Is there any way so that we can determine the person from whose login it happened.
    Thanks in advance

    Hi,
    You can try using PSA if that request it's still there.
    Otherwise, you will need to regenerate that request in source system (by filling setup tables with parameters) and update BW with a full load.
    Hope this helps.
    Regards,
    Diego

  • Request group set error...

    I have created an request group set to upload Master Item in inventory.
    I am getting the following error when submitting Request Group request set from "India Local Inventory" responsibility in vision R12 instance :
    APP-FND-01564: ORACLE error -1116 in SUBMIT: others
    Cause: SUBMIT: others failed due to ORA-01116: error in opening database file 85
    ORA-01110: data file 11: '/d02/vis_db/VIS/db/apps_st/data/tx_idx17.dbf'
    ORA-27041: unable to open file
    Linux Error: 24: Too many open files
    Additional information: 3.
    The SQL statement being executed at the time of the error was: &SQLSTMT and was executed for the file &ERRFILE.
    How can I solve this problem??

    Please refer to the following notes:
    [Note: 566234.1 - Error: 24: Too many open files running initial request set|https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=566234.1]
    [Note: 429760.1 - Ora-01110: Data File Error Opening Datafiles File|https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=429760.1]

  • Request Group on Responsibility?

    Dear all,
    I have a question and it is very strange. I have 2 responsibilities like "0000 AP Super User", "0001 AP Super User" and they also attahced request group with '0000_AP_SM_RG". However, "0000 AP Super User" responsibility able to see one report and submit that report and the other one cannot.
    Then I checked "exclude" function on responsibility, I found nothing. Then I back o request group "0000_AP_SM_RG" to see include this report, I found nothing again.
    Can anyone tell me what I have donw wrong?
    Please kindly advice.
    Thanks.

    What is the apps version ?
    Pls clear cache and recheck
    How To Clear The Cache Using Functional Administrator? [ID 759038.1]
    How To Clear Caches (Apache/iAS, Cabo, Modplsql, Browser, Jinitiator, Java, Portal, WebADI) for E-Business Suite? [ID 742107.1]
    thanks

  • Request Group options - Security

    Hi all, Is there any way you can configure the request group in accordance with the responsibility? Our Scenario involves 2 responsibilities sharing the same request group. But we need to have a different list of requests for both these responsibilities for security reasons. I've gone thru the security profiles, but found none that relates to this issue. Any help is highly appreciated.
    Thanks,
    Naveen Gagadam.

    I am not sure what you are looking for,
    the simple thing you can do is, you need to create as many request group you need and attach it to the responsibility.
    but if you use discoverer, the discoverer data follows the security profile attached to the person

  • Request Group to a user

    Hi,
    Can we add a request group to a user?
    Regards,
    Kr

    How is this possible???Note: 457519.1 - How to Submit a Concurrent Request Using CONCSUB Syntax
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=457519.1
    Note: 218989.1 - How to Submit Concurrent Program Report Set from the Operating System
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=218989.1

  • 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

  • Request groups to responsibility mapping

    Hi I have used the following query to get list of programs mapped to request group and responsibility combination.
    I feel that i may be missing some programs. Do you have an idea of what does request_unit_type = 'P' stand for and what could be other possible values.
    SELECT responsibility_name , frg.request_group_name, fcpv.user_concurrent_program_name, fcpv.description
    FROM fnd_request_groups frg, fnd_request_group_units frgu, fnd_concurrent_programs_vl fcpv, fnd_responsibility_vl frv
    WHERE frgu.request_unit_type = 'P'
    AND frgu.request_group_id = frg.request_group_id
    AND frgu.request_unit_id = fcpv.concurrent_program_id
    AND frv.request_group_id = frg.request_group_id
    ORDER BY responsibility_name;

    REQUEST_UNIT_TYPE: Is a flag to indicate whether the report, report set, or all reports and sets in an application are included in the report security group.
    - P means a report
    - S means a report set
    - A means all reports and sets in an application
    All details about Oracle E-Business Suite tables and columns can be found at:
    Oracle eBusiness Suite Electronic Technical Reference Manual - eTRM
    https://etrm.oracle.com

  • FNDLOAD Command to attach concurrent program to existing Request Group

    Hi,
    Is there any FNDLOAD command to attach concurrent program to existing request group. The requirement is, Concurrent Program should be migrated and automatically get attached to the existing request group.
    Thanks,
    Rama

    You cannot do the request group assignment as part of loading the concurrent program with FNDLOAD. However, afcpreqg.lct looks as though it can download a Request Group Unit with something like (not that I have used this):
    FNDLOAD <USERID/PASSWORD> 0 Y DOWNLOAD @fnd:patch/115/import/afcpreqg.lct <output file>.ldt REQUEST_GROUP_UNIT APPLICATION_SHORT_NAME=<RG's APP> REQUEST_GROUP_NAME=<RG's NAME> UNIT_NAME=<CP's SHORT NAME>
    A bit of pain if you need to download a number of Request Group assignments for a Concurrent Program, but possible all the same, by the look of it.

Maybe you are looking for

  • Buggy issues with keyboard buttons.

    Getting constant issues with keyboard keys in Photoshop. Delete key does not delete layer, Fill layer (Option Delete) only works when I change tools. And it does this intermittently. It's very annoying! Anyone else have these issues? These are just s

  • Lost recent info when restored from backup

    When I connected my phone, it automatically asked me if I wanted to restore from a previous backup. Without thinking, I clicked ok, and lost all my recent info - contacts, TM's, and songs, etc. Is there a way to get it back? I've undone restoring my

  • ITunes Music Video. Sound but no video

    Today I updated to OS X 10.7 Lion and have also installed iTunes 10.4. Now I have a problem playing music videos, they play but I get sound only and no video. How do I get the video stream to run as well? Thanks

  • Apps downloading error : Account not valid for Nepalese store, Switch to Indian Store..

    While trying to Download apps from Store it shows that My account is not valid for the use in Nepalese store...  well,  I'm from Nepal but currently I'm in India for my study. So, while I guess I had choosen india while Filling Details.. But now I wa

  • Custom tag in predefined tag

    Can anyone tell me why we are going for custom tag & why cant we do our own custom attribute in predefined tag.if we do like this it will work ?then why we need go to for custom tag thanks Dilip