How to grant access to all workbooks to a particular responsibility?

Hi,
I am new to Discoverer. i have installed OAS 10.1.2.3 and I have done EUL_SET up on my E-Business Suite R12 and now 'SYSADMIN' owns all the workbook under "System Administrator" responsibility. Now users want to see all workbooks.
I need to provide access. how can I do that?
Ram

Hi,
You need to connect as SYSADMIN using Discoverer Desktop or Plus. (You may need to grant more privileges to SYSADMIN to do this). Then under workbook management go to workbook sharing and select the user -> workbook tab. You will then be able to select the responsibility and share some or all of your workborks with that responsibility.
Rod West

Similar Messages

  • Grant access to all the views created in user schema to another schema

    How to grant access for all the views created in own HAGGIS schema to comqdhb schema on the HAGGIS database.
    Oracle Grant Privileges
    ===============
    Object privileges assign the right to perform a particular operation on a specific object
    I read that we can use select 'grant select on' ||view_name||'HAGGIS' user_views where owner='COMQDHB'
    Is this right
    Oracle System Privileges
    ===============
    System privileges should be used in only cases where security isnt important,because a single grant statement could remove all security from the table
    Role based security
    ============
    Role security allows you to gather related grants into a collection-since the role is a predefined collection of privileges that are grouped together.privileges are easier to assign to users.
    [http://www.dba-oracle.com/art_builder_grant_sec.htm]
    can we grant select update to all the views at a time to the other schema.
    Are there any other ways to secure the data other than creating users and assigning roles.
    Thank you
    Edited by: Trooper on Dec 23, 2008 9:24 AM

    I think what was suggested was that you use SQL to generate the grants on each and every view, that is, you use SQL to generate SQL where the SQL being generated is "grant select on view_name to role'"
    If you users to connect to Oracle you have to create usernames for them though if the users only connect via an application the application might run just as one user and access to the application is controled via application security. The control on the application can be via Directory Services such as OID or MS Active Directory. User access to Oracle can also be controlled via OID.
    To connect to Oracle you can use OS authenication (not recommended), usernames with passwords, or via Advanced Security Option which supports single sign-on products like Kebros or Oracle Internet Directory etc....
    Example using SQL to generate SQL
    How do I find out which users have the rights, or privileges, to access a given object ?
    http://www.jlcomp.demon.co.uk/faq/privileges.html
    HTH -- Mark D Powell --

  • How to grant privileges on all the tables in a schema

    Hi All,
    Can you tell me how to grant privileges on all the tables of a schema A
    to schema B.
    For Example:
    There are 200 tables in schema A, I wanted to grant select privilege on all the tables of a scheme A to schema B.
    Thanks in advance.

    note that USER is the user that will have the select priviledge
    the procedure includes views as well
    CREATE OR REPLACE PROCEDURE GRANT_ACCESS_ON_USER IS
    CURSOR c1 is select table_name from user_tables;
    CURSOR c2 is select view_name from user_views;
    tablename user_tables.TABLE_NAME%TYPE;
    viewname user_views.VIEW_NAME%TYPE;
    BEGIN
    tmpVar := 0;
    OPEN c1;
    loop
         fetch c1 into tablename;
         EXIT WHEN c1%NOTFOUND;
         EXECUTE IMMEDIATE 'GRANT SELECT on '||tablename ||' to USER';
    end loop ;
    close c1;
    OPEN c2;
    loop
         fetch c2 into viewname;
         EXIT WHEN c2%NOTFOUND;
         EXECUTE IMMEDIATE 'GRANT SELECT on '||viewname ||' to USER';
    end loop ;
    close c2;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    NULL;
    WHEN OTHERS THEN
    -- Consider logging the error and then re-raise
    RAISE;
    END;
    /

  • Grant access to all object/tables in other schemas to a user

    Is there any and simple way to grant access to all object/tables in other schemas (more than one) to a scheme/user?
    Thanks.
    Tarman.

    HI.
    grant SELECT ANY TABLE,delete any table, insert any table to user; Giving this delete,insert ANY TABLE privilege to a user can be dangerous and the use can mislead it. Its better to create a dynamic script and then grant it.
    E.g Suppose you want to give select,inert,delete,update privileges to user A on user B's object.
    sql> spool grants.sql
    sql> select 'grant select,insert,update,delete on '||owner||'.'||table_name||' to A;' from dba_tables where owner='B';
    sql>@grants.sqlHTH
    Anand

  • How to hide ribbon from all item view for particular user group

    hi friends
    how to hide ribbon from all item view of particular list for specific user group.
    using OOB functionality or javascript. 

    Hello,
    Use this codeplex tool to hide ribbon to user group:
    http://spribbonvisibility.codeplex.com/
    If you don't want to use above tool then you have to add SPSecuritytrimming in "Rajiv Kumar" code for filtering based on user group permission.
    http://www.topsharepoint.com/hide-the-ribbon-from-anonymous-users
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to GRANT SELECT on all the tables in 1 go?

    Hi
    I have many tables (close to 200) in my Schema. I want to grant SELECT ON ALL TABLES to another user. How do I achieve this in one go?
    Thanking you in advance,
    ...

    Although Justin has given a wonderful answer. You might also review the following threads;
    Grant select on a schema
    Re: Grant select on a schema
    grant select on
    grant select  on
    grant select on tables
    Re: grant select on tables
    Adith

  • How to grant access to sharepoint for the user from different Domain

    Hi All
        I need to grant access to user from different domain. 
        Where I can able to view the users in people picker (different domain).
    Thanks in Advance.
    Raj

     Hi
    Trevor Seward
    Sorry to disturb
    you again.
      I am trying to restrict user from search from other domain, say we have domain A and Domain B, where I am trying to restrict all the user from domain B (Search users)for a site collection. I have found couple of stsadmin command to do so. but none
    of them works. Below are the commands I have tried
    STSADM.exe -o setproperty -pn peoplepicker-searchadforests -pv "domain:<Name>.domain" -url "http://Site URL"
    stsadm -o setproperty -pn peoplepicker-searchadcustomquery -pv “(canonicalName=<Name>.domain*)” -url "Site URL"
    we have two way trust.
    Can you suggest any solution.
    Thanks 
    Raj

  • How to grant access to?????

    User needs read access to triggers, procedures, function and MV's on all schema.
    Which system privileges I have to grant?

    If we're limiting ourselves to SQL*Plus, then access to the appropriate DBA_ tables, like DBA_SOURCE, should be sufficient. I assume that Amiel made a typo when he referred to the ALL_ tables-- every user has access to the ALL_SOURCE table by default, the rows that are returned from that view depend on the privileges the user has to execute that particular piece of code. The DBA_SOURCE table, on the other hand, has the source for all the PL/SQL in the database, so users with access to DBA_SOURCE can see the source code for any procedure/ package/ function in the database.
    SCOTT @ jcave102 Local> conn / as sysdba
    Connected.
    SYS @ jcave102 Local> create user sam identified by sam;
    User created.
    Elapsed: 00:00:00.29
    SYS @ jcave102 Local> grant create session to sam;
    Grant succeeded.
    Elapsed: 00:00:00.06
    SYS @ jcave102 Local> grant select on sys.dba_source to sam;
    Grant succeeded.
    Elapsed: 00:00:00.18
    SYS @ jcave102 Local> conn sam/sam
    Connected.
    SAM @ jcave102  > ed
    Wrote file afiedt.buf
      1  select text
      2  from dba_source
      3  where owner = 'SCOTT'
      4  and name = 'GET_NUM_TBL'
      5* order by line
    SAM @ jcave102  > /
    TEXT
    function get_num_tbl
      return num_tbl
    is
      l_nums num_tbl;
    begin
      l_nums := num_tbl();
      l_nums.extend;
      l_nums(1) := 1;
      return l_nums;
    end;
    10 rows selected.
    Elapsed: 00:00:00.06Justin

  • How to get access to all the advisories in mozilla?

    Mozilla Foundation Security Advisories (http://www.mozilla.org/security/announce/),
    when accessed provides information on many of the advisories, but for some it displays an error that you are not authorized to open.
    I tried to open bug #790879 & it showed following error:-
    (https://bugzilla.mozilla.org/show_bug.cgi?id=790879).
    Can anybody please tell me what needs to be done to get complete access of the advisories.

    i myself am no mozilla staff but just a contributing volunteer, so i cannot tell you for sure how it works in practise (the policy document is now nearly a decade old). however according to the document most bugs should get disclosed after a unspecified amount of time after they got fixed and then they are just readable like any other normal bug report at bugzilla.mozilla.org.
    in case you have a legitimate interest in reviewing a certain inaccessible bug-report (& have an account on bugzilla.mozilla.org) you could also try to write an email to the security@XXX mail address & explain the situation - maybe they can/will add you to the list of people who are authorized to view the details.

  • ORACLE - How to GRANT privilegies on ALL the tables belonging to a schema

    Is there a way to grant to a user the same privilegies on ALL the tables belonging to the same schema, so that, in case a new table is created afterwards, the grant is automatically given ?
    Thanks in adance for any reply

    Yes of course ! Just do the same as Oracle Applications: an end user has no Oracle account, the application code connects with the Oracle account that is the schema owner:
    no more grant needed ... That's a joke but it's also true ! In this case, your application must implement its own security (password management, audit, privileges) and you will not be able to use Oracle privileges, auditing and advanced security features ... just like Oracle Applications.
    The above answers are of course correct. You can also create an Oracle role that you can grant to the Oracle users and grant the privileges to this role everytime a new table is created to avoid granting privileges for each new object to each user.

  • How to grant access to view linked in another DB

    Hello,
    I have two DBs. "DatabaseA" and "DatabaseB". I have table "tableA" in databaseA and I have created view in "ViewB" which contains simple SQL query "select * from DatabaseA.dbo.tableA".
    Rigth now I want to get user access to view "viewB" without possibility to see original databaseA tableA

    Rigth now I want to get user access to view "viewB" without possibility to see original databaseA tableA
    If you really have to stick to views, one option is to enable
    database-ownership-chains between those 2 databases.
    Be careful to only enable those 2 databases via
    ALTER DATABASE [DB1]
    SET DB_CHAINING ON
    ALTER DATABASE [DB2]
    SET DB_CHAINING ON
    Then they have to be owned by the same Server Principal/Login (preferably
    not a sysadmin, but that's yet another discussion)
    You can read more about such ownership-chains here:
    http://technet.microsoft.com/en-us/library/ms188676%28v=sql.105%29.aspx
    You then have to be very careful with ALL Objects in Database 1 and 2 - because the chain will work for all of them - as long as they share a common owner. You would have to make sure that only that table (schema) is owned by the same owner.
    And if DDL-permissions come into play, this becomes almost impossible to secure..
    So If you do not fully understand the risks involved by this, I would advise against such a setup and refer to other options.
    One better option even with Views:
    Even with views you can select from a function. And functions can be signed with a certificate.
    So a much more secure option is to go for Certificate Mapped Logins, working for only specific objects that you sign.
    http://msdn.microsoft.com/en-us/library/ms173463.aspx
    I can't find a complete article on that this moment, but I'm sure you can find it.
    Andreas Wolter
    Microsoft Certified Master SQL Server 2008
    Microsoft Certified Solutions Master SQL Data Platform, SQL Server 2012
    Blog: www.insidesql.org/blogs/andreaswolter
    Web: www.andreas-wolter.com |
    www.SarpedonQualityLab.com

  • Creating a photo book, How can I access / view all the versions?

    I used 247 versions to create a book in Aperture 3.5.1. I am reviewing the book. Only 93 versions are now displayed! I cannot access/view the other ones. Up to friday it was fine. What happens? How do I solve this issue?

    You can not - they are soreted by date
    --  the only solution I have seen is to put them in an album sorted the way you and and then use the batch cnage command to redate them with a small invrement between so a data sort matches your desired sort  --  I personally do not want to redate a bunch of my photos nor do i want  to have to go through and un-re- date a bunch
    suggest a change to Apple - iPhoto menu ==> provide iPhoto feedback
    LN

  • How to grant access to a Oracle Report  Program

    Hi hussein,
    I am checking/debugging our clients registered customized report program setup.
    I want to grant the program to my ID so I can test print and see its output.
    The steps I followed are the ff:
    A.
    System Administrator resp: Concurrent Program > Executable :
    Executable : CEC2CREC
    Application : ABC Customizations
    Execution Method : Oracle Reports
    Execution File Name: CEC2CREC
    B.
    System Administrator resp: Concurrent Program > Define :
    Program : Bank Reconciliation Report ( 2 Column )
    Short Name : CEC2CREC
    Application : ABC Customizations
    Executsble Method : Oracle Reports
    Executable Name : CEC2CREC
    I want to grant this program "Bank Reconciliation Report ( 2 Column )" to my USERID.
    I followed these steps:
    - Login to System Administrator responsibility
    - Navigate to Security > Responsibility > Define
    - Query the "ABC Customization" responsibility
    But I can not find any "ABC Customization" responsibility
    Is there other way to test run the program?
    Thanks a lot
    Edited by: yxes2009 on Sep 14, 2009 3:23 AM

    Hi,
    System Administrator resp: Concurrent Program > Executable :
    Executable : CEC2CRECApplication : ABC Customizations
    But I can not find any "ABC Customization" responsibility According to the above, "ABC Customizations" is an executable file (concurrent program) and not a responsibility. From (Security > Responsibility > Define), query the responsibility which is assigned to the user, and check the "Request Group" which is attached to this responsibility, then navigate to (Security > Responsibility > Request) and add "ABC Customization" request to the request group.
    Regards,
    Hussein

  • Imac - How stop ipad access to all users please?

    Just bought the beauuuutiful 27" 3tb fusioned i7 Imac, and incredibly happy, of course
    But I notice if a phone or ipad is connected, and user can access it??! Surely there's some way you can assign the ipad/phone to a login to protect it's content?? I don't want my kid messing with my phone/pad if I leave it plugged in. Both phone and ipad are pin locked.
    Just wondered! Many thanks in advance for any help at all

    Yup, it's the exact same problem I had with Mozy. The developers have not written their software properly for the multi-user OS X platform. As jsd2 says above, software designed to back up a whole system should run with root privileges, and they appear to have written theirs with user privileges instead. Major bug.
    You *should not* adjust the permissions of your user folders. That will create security and stability issues. You should contact Memeo support and ask them to fix their broken backup software.
    When I tried this with Mozy, they recognized the problem, but told me that it wouldn't be fixed. They told me, as a workaround, to "just log in to each one of your five user accounts individually and run the backup software five times" I immediately cancelled my Mozy subscription and deleted their broken software. I suspect you may very well end up going down the same road with Memeo.

  • How can I access all my music when NOT connected to internet? I feet a few of the new ones I purchased but every other song is in grey mode. Meaning they won't play

    How can I access all my music when NOT connected to the internet? I find that the playlists are all grey and the newest bought are the only black ones there fore the only ones playable. How can I access them all with only battery power?

    Nevermind...I did what it said to do in the article and it worked!

Maybe you are looking for