Query to find the Pages and the list of permissions associated with a particular role in PS

I want a query to find the Pages and the list of permissions associated with specific roles in PS.

For example, if we see the role of manager accounts payable, it conatins Pages and the list of permissions.

But, to get everything in EXCEL sheet by Manuel priocess's BIG job. So, can someone give me the query.

Please try under queries

The roles assigned to the list of Perm:

SELECT B.ROLENAME

OF PSCLASSDEFN A, PSROLECLASS B

WHERE (A.CLASSID = B.CLASSID

AND A.CLASSID =: 1).

List of Perm pages can access:

SELECT B.MENUNAME, B.BARNAME, B.BARITEMNAME, B.PNLITEMNAME, C.PAGEACCESSDESCR, B.DISPLAYONLY

OF PSCLASSDEFN A, PSAUTHITEM B, PSPGEACCESSDESC C

WHERE (A.CLASSID = B.CLASSID

AND A.CLASSID =: 1

AND B.BARITEMNAME > ' '

AND B.AUTHORIZEDACTIONS = C.AUTHORIZEDACTIONS)

Tags: Oracle Applications

Similar Questions

  • SQL query to find the total number of source based nonsource passangersbetween source and destination station and passenger station on the same chekindate

    Hello

    SQL query to find the total number of source based nonsource passangersbetween source and destination station and passenger station on the same chekindate.

    Please help on this script and let me know if you need more details.

    ---

    You use a SELECT statement.  Let me know if you need more details.

  • HP Pavilion Notebook - 15-p164: could not find the list of drivers

    I get the message "cannot find the list of drivers for your product.  Since the installation of the driver for my GPU, I get the BSOD "thread stuck in device driver".  I make sure that I have all the correct drivers.  Thank you.

    @Aljoli

    Two systems in this category...

    HP Pavilion Notebook - 15-p164ca (ENERGY STAR)

    and

    HP Pavilion Notebook - 15-p164nr (ENERGY STAR)

    When you see a post that will help you,

    Who inspires you, gives a cool idea,

    Or you learn something new.

    Click the 'Thumbs Up' on this post.

    Fixed / responded? Click this post accept as Solution to help others find answers.

  • Where can I find the list of spam on my email?

    Original title: unlocked spam

    I missed some notice to renew auto insurance. It seems that they sent me the notice. I'm just checking if AAA is blocked on a list of junk e-mail or spam. Mail from Windows that I'm headed towards is not active. It has nothing in it.  Where can I find the list of spam on my email?

    Junk e-mail is put in a special folder in Winmail opener that you can access and display.  You can go to tools | Junk e-mail options and disable the junk mail filter, but which will leave just go it junk in your Inbox.  Filters spam or phishing filters do not remove the messages themselves.

    I suspect that your problem is with your email provider.  Try to connect to their servers via webmail and you can find junk or the spam filters you can set here, separate from Windows Mail.

    Steve

  • To find the list of users who have access to the specific cube in essbase

    Hi team,

    I have EMP 11.1.2.2. Can you please let me know how to find the list of users who have access to the individual of the cube in shared services or by using script maxl essbase. I don't get the answer you need using the commissioning report.

    Thanks for your time and your help.

    Try the display Privilege, you must then filter for that particular cube. Why is commissioning report does not?

    Concerning

    Celvin

  • Query to find the previous activity in STM

    I have a data base to reflect a State of Transition (STM) Machine. It contains 3 tables: activity, node, and Transition.

    Tables of knots and Transition are the configuration of the STM. They define the different possible States and the possible transitions between States.

    The way that I take through the STM is recorded in the activity Table. A record is created for each visited node.

    I need a query that uses the id of my current activity to find my previous activity, i.e. the activity that precedes me directly. The following rules apply:
    -My Id is meaningless
    -It should work for different configurations of the transition and the node tables, but:
    -The starting node is always the node "A".
    -There is no recursive transition, for example ('B', 'B');
    -There is no circular transitions, for example ('B', 'C') and ('C', 'B')
    -Transition and node tables will never change between the creation of the first activity and the execution of the query.
    -The path reflected in the activity table is always a valid path.
    -My current activity is always the last activity.

    For all data below, find the previous activity of activity with id = 4. The correct answer is "C".
    DROP TABLE Transition;
    DROP TABLE Activity;
    DROP TABLE Node;
    
    CREATE TABLE Node
    (
         Id VARCHAR2(1) PRIMARY KEY
    );
    
    CREATE TABLE Activity
    (
         Id Number(8,0) PRIMARY KEY,
         Node_Id VARCHAR2(1)
    );
    
    CREATE TABLE Transition
    (
         FromNode_Id VARCHAR2(1),
         ToNode_Id VARCHAR2(1)
    );
    
    ALTER TABLE Activity
    ADD FOREIGN KEY
    (Node_Id) REFERENCES Node(Id);
    
    ALTER TABLE Transition
    ADD FOREIGN KEY
    (FromNode_Id) REFERENCES Node(Id);
    
    ALTER TABLE Transition
    ADD FOREIGN KEY
    (ToNode_Id) REFERENCES Node(Id);
    
    INSERT INTO Node VALUES ('A');
    INSERT INTO Node VALUES ('B');
    INSERT INTO Node VALUES ('C');
    INSERT INTO Node VALUES ('D');
    
    INSERT INTO Transition VALUES ('A','B');
    INSERT INTO Transition VALUES ('B','C');
    INSERT INTO Transition VALUES ('B','D');
    INSERT INTO Transition VALUES ('C','D');
    
    INSERT INTO Activity VALUES (1,'A');
    INSERT INTO Activity VALUES (2,'B');
    INSERT INTO Activity VALUES (3,'C');
    INSERT INTO Activity VALUES (4,'D');
    Desired output:
    ID
    -
    C

    Hello

    Assuming that all Activity_id tells us nothing on the way, but all lines of activity together to form a single path, we can get results this way:

    WITH     all_paths    AS
    (
         SELECT     'A' || SYS_CONNECT_BY_PATH (a.Node_id, '/')
                  || '/'     AS node_id_path
         FROM     Transition  t
         JOIN     Activity    a  ON  a.Node_Id  = t.ToNode_Id
         WHERE     LEVEL             = (
                                SELECT  COUNT (*)
                             FROM     activity
                             ) - 1
         START WITH  t.FromNode_Id  = 'A'
         CONNECT BY  t.FromNode_Id  = PRIOR t.ToNode_Id
    )
    SELECT       REGEXP_SUBSTR ( node_id_path
                     , '([^/]+)/' || (
                                        SELECT  Node_Id
                                 FROM    activity
                                 WHERE   Id     = 4  -- target_id
                                    )
                             || '/'
                   , 1
                   , 1
                   , NULL
                   , 1
                   )     AS prev_id
    FROM       all_paths
    ;
    

    This means, there is some character (I used "/" above) that we know never appears in Activity.Node_Id.

    Since there are no loops in Transition, it cannot be more than 1 way that involves all activity lines. If there are N lines in operation, this full path will be one that extends to LEVEL = N - 1. (It is not N, N - 1, because the join between the activity and the Transition will always leave 1 line in activity with Node_Id = 'A'). As soon as we have the full path (which is node_id_path in 1 row, produced by all_paths), we just need to guess what was the Node_Id, which corresponds to the id of the target (4 in this example) and find the previous of the delimited node_id_path node_id.

  • query to find the dependent task, attached to the task on a response in OIM 11 g

    can someone help me to do a sql query to find the dependent task, attached to the task on a response in OIM 11 g

    Published by: user13331347 on Sep 3, 2012 14:09

    Use under query to find the dependent task in OIM 11 g: -.

    Select pkg.pkg_name, mil.mil_name, rsc.rsc_data, rsc.sta_key, sta.sta_status, sta.sta_bucket, mil2.mil_name
    pkg pkg, tos tos, mil mil, mil mil2, rsc rsc, sta sta, rgm the rgm
    where pkg.pkg_key = tos.pkg_key
    and tos.tos_key = mil.tos_key
    and mil.mil_key = rsc.mil_key
    and rsc.sta_key = sta.sta_key
    and rgm.rsc_key = rsc.rsc_key
    and rgm.mil_key = mil2.mil_key
    order of pkg.pkg_name, mil.mil_name, rsc.rsc_data, sta.sta_status, mil2.mil_name

  • Query to find the coordinates of employee salary

    Hello

    Could someone help write the query to find the salary of the employee details.

    Thanks in advance.

    This should help you get started:

    SELECT papf.full_name
    papf.email_address
    ppp.proposed_salary_n salary
    OF per_pay_proposals ppp
    per_all_assignments_f ADP
    per_all_people_f women's wear
    WHERE ppp.assignment_id = paaf.assignment_id
    AND paaf.assignment_type = 'E '.
    AND paaf.primary_flag = 'Y '.
    AND paaf.person_id = papf.person_id
    AND nvl (papf.current_employee_flag, 'n') = 'Y '.
    AND trunc (sysdate) BETWEEN
    PPP.change_date AND ppp.date_to
    AND trunc (sysdate) BETWEEN
    PAAF.effective_start_date AND paaf.effective_end_date
    AND trunc (sysdate) BETWEEN
    PAPF.effective_start_date AND papf.effective_end_date;

  • What is the query to find the name of all applications for all EBS R12.1.3 modules?

    What is the query to find the name of all applications for all EBS R12.1.3 modules?

    With regard to:

    Mr. Shahzad Saleem

    Try:

    SELECT * FROM fnd_concurrent_programs_vl;

  • I have a lightroom software 6. My mac has no dvd/cd slot and I want to download. I have the serial number. I can't find the option to download lr with a serial number

    My mac has no dvd/cd slot and I want to download. I have the serial number. I can't find the option to download lr with a serial number

    Hello

    Please visit the link below to download:

    Install Photoshop Lightroom

  • How to find the list of the cameras raw files supported for 12 items

    Where you will find the list of cameras supported by photoshop elements 12 raw processing?

    Here:

    Camera Raw plugin | Supported devices

    What operating system do you use?

    PSE 12 can use up to camera raw 8.5, so if you do not have 8.5, use help > updates editor of PES 12 to get the update to camera raw 8.5.

  • How to find the list of the patches applied without using the inventory?

    Hello

    I asked this question once.
    How you will find the list of the patches applied to the House of Oracle database without using commands like opatch lsinventory - detal etc...
    I think that registry$ story is a view from where you can find the list of the applied patches.
    But I think that he understands all the bug fixes, stand alone or one-off patches. It will mainly list on the CPU patches applied (correct me if I'm wrong).

    Thank you
    Fany

    Salvation;

    Please read
    You can delete $ORACLE_HOME/.patch_storage Directory? [403218.1 ID]

    Respect of
    HELIOS

  • Where to find the list of projected coordinate system support

    Hello

    Sombody can you please help me where to find the list of transformations of coordinates geodethic supported for space? TIA

    Tamas

    Yes, you would sdo_cs.transform (column_name, 8307)

  • How can I find the list schema

    I am new to Oracle/SQLPlus and gave access to a database that I need to make a few requests on. I don't know where start be honest. But I think I need to find the correct pattern to start with at least.

    Is it possible to see an ad or something that describes the names of the patterns?

    Select username from dba_users;

    But how to connect without any username?

  • Trying to find the URL in firefox 15 with DOM, then it breaks down, why?

    I'll try to find the URL of firefox 15 with the help of the DOM and DOM features are failed every time. Is that the DOM supports firefox 15?
    DOM: ISimpleDOMNode, ISimpleDOMDocument, ISimpleDOMText

    Hi R - VR

    I work for SUMO, but I'm not a developer of Firefox. So unfortunately I can't solve your issue.

    This forum is not for questions of programming, but I don't know the right forum to ask them. I'll send a Firefox developer who might know the answer, or who knows the appropriate place to ask this question. And I'll ask him to respond here.

    See you soon!

    .. Roland

    p.s. I did some research on Google and found the following (if you found them already or that they do not help, sorry!), can help to:

Maybe you are looking for