How NOT to do Direct grant on "Demo database" Method filter

Hello,
When I add a new user in BPA, on the 5 step of the wizard
The "Demo database" is checked under the"'Direct" assign AND is greyed out.
I do not want the user to have this filter.
What is worse is that I cannot go in after user creation to REVOKE this filter either.
Q1 : How do I revoke this filter?
Q2 : What is causing this behaviour (of auto grant) to happen ?
This happens
Thanks in advance
regards
Sanjiv

Hi Sanjiv,
I have been working on ARIS and i havnt faced the problem that you have mentioned. we can easily assign any filter to any user and not just only one we can also assign more thn one filter.
As you said you have raised it to Oracle, have they acknowledge it as an bug in Oracle BPA?
Please provide me with your mail ID and i will send you procedure to create user and assign filter.
It is possible that there is a Bug in Oracle release or may be you have missed some thing while performing the procedure.
Regards
Gaurav Sharma :)

Similar Messages

  • Demo Databases

    Dear all,
    i want to set-up some Demo Companies in SAP Business One. Are there Demo DBs for different branches with some Data (BP, Items, Transactions) available to download and install?
    Many thanks, david

    David,
    There is a demo database that is included with the install of SAP Business One for "OEC Computers".  This demo database does contain Business Partners, Items, etc.  Other than this I am not sure if there are other demo databases available.  You may want to post your question on the SAP Business One Discussion Forum at...
    http://cpsn-channel.sap.com/businessoneforum
    as you may get more information here as that forum is for questions with respect to the SAP Business One application.  The forum that you have posted your question in is for questions related to the SAP Business One SDK.
    Eddy

  • After the new project by importing PPT release, how to achieve the release of the demo mode SWF, but not now only Click to continue?

    After the new project by importing PPT release, how to achieve the release of the demo mode SWF, but not now only Click to continue?
    Note:Captivate 5.5
    Thks

    通过导入PPT新建的项目发布后,如何实现发布演示模式的SWF(自动播放),而不是交互模式的SWF(只能点击才能继续)?

  • Direct grants working, but not roles

    Newbie question on roles.
    I'm trying to give access to tables in one schema, zowner, to another (empty) schema, zuser, which represents an application user.
    If I grant zuser a privilege directly, it works. For example:
    SQL> grant insert on zowner.items to zuser; -- as DBA
    Grant succeeded.
    SQL> select count(*) from zowner.items; -- as zuser
    COUNT(*)
    3
    But if I create a role instead, and grant it a privilege, and then grant zuser that role, then it doesn't work:
    SQL> create role zowner_delete; -- as DBA
    Role created.
    SQL> grant delete on zowner.items to zowner_delete; -- as DBA
    Grant succeeded.
    SQL> grant zowner_delete to zuser; -- as DBA
    Grant succeeded.
    SQL> delete from zowner.items where num=3; -- as zuser
    delete from zowner.items where num=3
    ERROR at line 1:
    ORA-01031: insufficient privileges
    What am I missing??? Thanks, --DD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    No, I don't think I was, yet I'm still seeing some weird stuff going on:
    I did get further by granting 'create role' to zowner, and creating the roles using zowner, as it seems that a role created by system is less accessible that one creating by an ad-hoc (non-privileged) user.
    But if you look at the SQL*Plus session below, you'll notice that despite granting the delete privileges (on table zowner.items) to zuser, the first delete attempts fails, while the second succeeds! The first one is made withing the test-roles script, while the second is later on, by hand in SQL*Plus, after listing the privileges of the roles.
    So there's still something funny going on here, which I don't understand... And as you can also see, I'm alternating connections between zowner and zuser, so I am reconnecting everytime this time.
    If anyone can shed more light on this, that be great. Thanks, --DD
    Oracle Database 11g Enterprise Edition Release 11.1.0.4.0 - Beta
    With the Partitioning, OLAP and Data Mining options
    SQL>
    SQL>
    SQL>
    SQL>
    SQL>
    SQL> @test-roles
    SQL> SET SERVEROUTPUT ON
    SQL> -- (zdb value changed)
    SQL> DEFINE zdb = '@//host:port/sid'
    SQL>
    SQL> ---- As system ---------------------------------------------
    SQL> DROP USER zowner CASCADE;
    User dropped.
    SQL> CREATE USER zowner IDENTIFIED BY zowner;
    User created.
    SQL> GRANT CONNECT, RESOURCE, CREATE ROLE, CREATE TABLE TO zowner;
    Grant succeeded.
    SQL>
    SQL> -- Create empty user.
    SQL> DROP USER zuser CASCADE;
    User dropped.
    SQL> CREATE USER zuser IDENTIFIED BY zuser;
    User created.
    SQL> GRANT CONNECT, RESOURCE TO zuser;
    Grant succeeded.
    SQL>
    SQL> DROP ROLE zowner_insert;
    Role dropped.
    SQL> DROP ROLE zowner_delete;
    Role dropped.
    SQL> commit;
    Commit complete.
    SQL>
    SQL> -- As zowner -----------------------------------------------
    SQL> CONNECT zowner/zowner&zdb;
    Connected.
    SQL> create table items (num INTEGER, txt VARCHAR2(32));
    Table created.
    SQL> insert into items (num,txt) values (1, 'one');
    1 row created.
    SQL> insert into items (num,txt) values (2, 'two');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> PROMPT Listing items from zowner
    Listing items from zowner
    SQL> select * from items;
    NUM TXT
    1 one
    2 two
    SQL>
    SQL> -- As zuser (no grant: select FAILS) -----------------------
    SQL> CONNECT zuser/zuser&zdb;
    Connected.
    SQL> select * from zowner.items;
    select * from zowner.items
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL>
    SQL> -- As zowner -----------------------------------------------
    SQL> CONNECT zowner/zowner&zdb;
    Connected.
    SQL> GRANT select on items to zuser;
    Grant succeeded.
    SQL>
    SQL> -- As zuser (direct grant: select OK) ----------------------
    SQL> CONNECT zuser/zuser&zdb;
    Connected.
    SQL> select * from zowner.items;
    NUM TXT
    1 one
    2 two
    SQL>
    SQL> -- As zowner -----------------------------------------------
    SQL> CONNECT zowner/zowner&zdb;
    Connected.
    SQL> CREATE ROLE zowner_insert;
    Role created.
    SQL> GRANT insert on items to zowner_insert;
    Grant succeeded.
    SQL> GRANT zowner_insert to zuser;
    Grant succeeded.
    SQL>
    SQL> -- As zuser (indirect grant: insert OK) --------------------
    SQL> CONNECT zuser/zuser&zdb;
    Connected.
    SQL> insert into zowner.items (num,txt) values (3, 'three');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from zowner.items;
    NUM TXT
    3 three
    1 one
    2 two
    SQL>
    SQL> set linesize 90
    SQL> column ROLE format a20
    SQL> column OWNER format a10
    SQL> column TABLE_NAME format a20
    SQL> column COLUMN_NAME format a10
    SQL> column PRIVILEGE format a20
    SQL> select * from role_sys_privs;
    ROLE PRIVILEGE ADM
    RESOURCE CREATE SEQUENCE NO
    RESOURCE CREATE TRIGGER NO
    RESOURCE CREATE CLUSTER NO
    RESOURCE CREATE PROCEDURE NO
    RESOURCE CREATE TYPE NO
    CONNECT CREATE SESSION NO
    RESOURCE CREATE OPERATOR NO
    RESOURCE CREATE TABLE NO
    RESOURCE CREATE INDEXTYPE NO
    9 rows selected.
    SQL> select * from role_tab_privs;
    ROLE OWNER TABLE_NAME COLUMN_NAM PRIVILEGE GRA
    ZOWNER_INSERT ZOWNER ITEMS INSERT NO
    SQL>
    SQL> -- As zowner -----------------------------------------------
    SQL> CONNECT zowner/zowner&zdb;
    Connected.
    SQL> CREATE ROLE zowner_delete;
    Role created.
    SQL> GRANT delete on items to zowner_delete;
    Grant succeeded.
    SQL> GRANT zowner_delete to zuser;
    Grant succeeded.
    SQL>
    SQL> -- As zuser (indirect grant: delete ??) --------------------
    SQL> CONNECT zuser/zuser&zdb;
    Connected.
    SQL> delete from owner.items where num=3;
    delete from owner.items where num=3
    ERROR at line 1:
    ORA-00942: table or view does not exist
    SQL> commit;
    Commit complete.
    SQL> select * from zowner.items;
    NUM TXT
    3 three
    1 one
    2 two
    SQL> -- END OF THE test-roles SCRIPT
    SQL> select * from role_sys_privs;
    ROLE PRIVILEGE ADM
    RESOURCE CREATE SEQUENCE NO
    RESOURCE CREATE TRIGGER NO
    RESOURCE CREATE CLUSTER NO
    RESOURCE CREATE PROCEDURE NO
    RESOURCE CREATE TYPE NO
    CONNECT CREATE SESSION NO
    RESOURCE CREATE OPERATOR NO
    RESOURCE CREATE TABLE NO
    RESOURCE CREATE INDEXTYPE NO
    9 rows selected.
    SQL> select * from role_tab_privs;
    ROLE OWNER TABLE_NAME COLUMN_NAM PRIVILEGE GRA
    ZOWNER_INSERT ZOWNER ITEMS INSERT NO
    ZOWNER_DELETE ZOWNER ITEMS DELETE NO
    SQL>
    SQL>
    SQL> desc zowner.items
    Name Null? Type
    NUM NUMBER(38)
    TXT VARCHAR2(32)
    SQL> insert into zowner.items (num,txt) values (4,'four');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from zowner.items;
    NUM TXT
    3 three
    4 four
    1 one
    2 two
    SQL> delete from zowner.items where num=4;
    1 row deleted.
    SQL>

  • Grant Privilege to Role instead of Direct grant doesn't work

    Hi all
    My scenario is sas follow:
    create user a identified by a;
    create user b identified by b;
    grant connect,resource to a ;
    grant connect,resource to b ;
    conn a/a
    create table tbl( c1 number(10));
    conn system/sys
    create role roll;
    grant roll to b;
    conn a/a
    grant select on tbl to roll;
    conn b/b
    set role roll;
    create or replace procedure b.pr
    as
    v number(10);
    begin
    select a into v
    from a.tbl
    where a=0;
    end;
    show error
    Errors for PROCEDURE B.P:
    LINE/COL ERROR
    6/1 PL/SQL: SQL Statement ignored
    7/6 PL/SQL: ORA-00942: table or view does not exist
    This happen because i granted the SELECT privilege to user b through the role ROLL but if i granted the user b the SELECT privilege directly it work properly
    Why???
    And how could I grant the privilege from within a role, Because i don't want to grant it directly
    Thank in advance
    Bassil

    There is no other way. The owner of stored code must have been directly granted all necessary (used in code) select, insert, update, or delete privileges. The code owner cannot just have the referenced privileges granted to them via a role. There is no workaround, nor should there be as this is a security feature. Just because you have been granted insert or delete to another user's tables does not mean you should be able to grant that access to some other user. This is exactly what you do when you grant execute to stored code that referenced another user's objects.
    The referenced article is by Tom Kyte and there are few people who understand how to use Oracle to better effect than Tom. The same information can be found in the official documentation and is referenced by the article.
    You can write packages that use the privileges of the executing person. Perhaps for the specific problem you are writing the code to handle this is the route you want to take. See the manuals for the details.
    Note - If user A grants insert to user B on table_a then user B can write a procedure, proc_b, and grant execute to a role and anyone with the role can perform inserts into table_a via proc_b, without having any grants on table_a. You do not need to grant privileges on the objects referenced in stored code that runs as the code owner if this is what you are worried about. The users just need execute on the package, procedure, or function that performs the DML operations in this case and they can get that from a role.
    If you still do not understand you need to state exactly what it is you either do not understand or want to know how to do.
    HTH -- Mark D Powell --

  • On-line store and how to contact Creative directly???

    5On-line store and how to contact Creative directly?CHi everybody. Came up with the following problem: I'm from Ukraine and I'm not able to buy anything from Creative on-line store.... I mean you don't send products to Ukraine. Why is that? Is that so difficult? Just to send it by express or regular mail? Anyway I pay forward for everything.
    Well, fine, may be there're some reasons for that. I've found your russian representati'ves and came up with the problem that they don't have on their web-site on-line store at all. Well, they have a link to it, but it's just a blank page....
    Moreover I couldn't find any online help(chat) or e-mail or feedback form to write my questions. That is really annoying. The same situation was with apple online store....where I had to spent around 2 hours to find some online chat and ask.
    No information on where to buy your products in Russia or in Ukraine, no on line store on russian web site, and finally impossibility to buy products in main on line store.
    I would be greatfull for any information.
    THank you in advance

    Well, I've been to this page. I can't send a message because I don't have yet any creative product and so I can't fill in the form few required fields (Date of purchase and serial number).
    Is there any other way to contact creative?
    thanks for reply

  • Can not print report directly to printer.

    Hi,
    We are using Crystal Report Server for reporting in our project.
    The version we are using is Crystal Report Server XI R2 and Crystal Report Server XI R2 SP 2.
    Please kindly advice us on the following issues we faced:
    - Can not print report directly to printer.
      The print button on the Crystal Report Viewer prints the report to pdf and user have to click "Print" again in the pdf file. This is unusual and not convenient. As we have hundreds of reports to print, is there a way we can print the reporrt directly to printer?
    - "Set to Null"
      In the default interface of the Crystal Report View, there's is this "set to null" check box that we can not remove. Is there a way to do without it?
    Thank you,
    Kenny Tew

    Morning Kenny,
    The printer settings are in server management console. Additionally see what settings you have setup for the printer for the report in the server. If it is setup to use End User printer then check your End user machine settings and make sure the printer is setup as a default printer on his/her machine.
    Please let us know how you get along with the issue.
    As far as "Set to Null" I am not sure where it is set up. A screenshot of it might help understanding it better?
    Many thanks
    Regards
    Jehanzeb
    Edited by: Jehanzeb Navid on Oct 6, 2008 11:07 AM
    Is this issue on all computers or only one computer?
    I have just tested this on my colleague machine and it asks for default printer and not pdf however on mine I setup for pdf.

  • How we can print directly a report without preview to a local printer in web

    How we can print directly a report without preview to a local printer in web-environment, whith Oracle 9ias Report server release 6i patch 11.
    The user want to print ticket, built by Oracle Report, without previuw on PDF format, in a web three-tier environment.
    Please supply my documentation in detail and sample code if you can.

    Hello,
    Take a look to the example provided in the note :
    Note.253881.1 How to Create a Report With a Frame Only on the Last Page at a Fixed Position
    Regards

  • How can I print directly out of Pages on my iPad?

    How can I print directly out of Pages on my iPad if my Brother printer is not airprint compatible? I currently have a Brother MFC-J615W and have downloaded the Brother iPrint app; but that only works with pictures and PDFs it seems.  I know I can use the cloud to transfer and just print from my macbook, but I am starting school and would love to cut out that middle step if possible.  I know... how lazy is that? But I feel like I should be able to make it work with a little ingenuity.  Thanks for any info you can provide.

    Try to arrange them manually afterwards: afaik, it is impossible to force an order when syncing:
    See MartyLightroom's post:
    Re: How do you arrange the albums in chronological order in iPhoto ? 

  • How to create report image like artwork demo

    Dear Pakars
    How to create report image like artwork demo ?
    Thanks
    Imansyah

    Hello,
    Are you asking how to include images in a report? If so, take a look at the declarative blob support documentation -
    http://www.oracle.com/technology/obe/apex/apex31nf/apex31blob.htm
    Hope this helps,
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • HT1515 i want to know that how can i print direct from my pc, and i also want to knw that can i directly print from my ios device.

    i want to know that how can i print direct from my pc, and i also want to knw that can i directly print from my ios device.

    To print from your PC, please check out the following iFelix article.
    To print from an iOS device (iPhone, iPod Touch, or iPad), the printer must be AirPrint-ready. If the printer is not, another option would be to use something like.
    Also you can check out this Apple Support article.

  • How to clear map directions

    How to clear map directions?
    Thanks in advance!

    Ok, so I cleared bookmarks and recents. Directions still showed. Selected search, then back. No luck.
    Then I selected a new destination. The old route then disappeared from the screen, finally.
    The new destination pin was blue, the old one red. While I was not able to select the red pin and choose delete, the blue pin allows for deletion.
    As to my second question, I am not finding how to turn off the GPS blue pulsing locator?

  • Data source could not able select NOT ALLOWED DTP Direct Access

    He Experts,
    I have a Problem, I have searched in Fourms and Blogs also but I did get any solution .
    I am developing HCM reports, as per my requirement extracting data through customized Function Module.ZGET_REQUI_DETAILS_NEW1.
    I can find data in RSA3 and it is loaded sucessful in BI, this I was comformation with the monitor screen
    all indicators are in Green Trafic signals.
    then I came to PSA but I cann't see data here one pop up is comming Error & in help message no D0313
    I found one thing the request which is in PSA come with GREEN (request updated to Target)
    rest of all standard are in Red untill transfer to targets.
    I found secound thing in the DATA SOURCE in Extraction Tab option Direct Access is selected with
    Allowed, but I want to sent data to standard DSO.
    that options are in disable mode even in edit selection.
    Queires:
    1. How to change the option NOT ALLOWED DTP Direct Access insted of Allowed in Data Source(ZREQUI_FM)
    2. what is will do to see data in PSA.
    Regards
    Vijay

    Dear Vijay,
    Iu2019m going to try helping you,
    In the ECC DataSource setting tcode: SBIW. You should check in your ZREQUI_FM DataSource the following setting of value in the DataSource: Costumer Version Edit field u201CExtractionu201D the following field ExtractStruct, Direct Access and Delta Update:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/fb69a990-0201-0010-64ab-cbbfc6f0f75b
    I hope this guideline can help you to find the answeru2026.
    Luis

  • How to restore demo database

    Hi all,
    I've a demo database (OEC Computers) 2007 B compatible.  Can anyone please guide me how to restore the database.  Since I don't have knowledge regarding SQL Server, I'm not able to restore the demo database.  Please guide me to restore the demo database.
    Thanks,
    Balaji

    Hi Balaji,
    Please open the SQL Server Enterprise Manager -> Expand the servers,
    1. rightclick Database ->New Database
    2. input information under General/Data Files, then OK
    3. right click the new db just created-> All task ->restore
    4. select 'From device' and then select device -> Add ->import the db ->OK
    Hope above could solve your problem.
    Regards,
    Eric

  • How do you say "Directions" to Siri?

    How do you say "directions" to Siri?  No matter how I say it, Siri will say "I'm sorry Peter, but I don't know what you mean by "direct actions"". Or, Siri will say "I'm sorry Peter but I don't know what you mean by "diet actions"".
    Here is another one.  How do you say "airport"?  Siri thinks that I am saying Apple.  So, if I ask "give me directions to the airport" it will give me directions to Apple in Cupertino.
    I know that Siri is STILL in beta, but come on!  I cannot even go to an Apple store with this, because I am using T-Mobile (I've had an unlocked iPhone 5 since the day it was released, last November) and Apple stores are surrounded by aluminium and they do not yet have the T-Mobile repeater!

    Hey pforkes,
    We have a troubleshooting article for Siri that you can find here:
    iOS: Troubleshooting Siri
    http://support.apple.com/kb/TS4079
    I'd take a look at the section titled "Ensure that Siri can clearly hear you," which might help you out. We also have a more general About Siri article that provides some tips for using it.
    Hope that helps,
    David

Maybe you are looking for