Unable to view BIPub report in the Dashboard by Non Administrator users

Hi All,
I have created a BI Publisher report and added the same to the Dashboard, I can view it as the Administrator user but unable to view it as any other Users.
I updated the privileges in the BI Presentation services and gave permission to Everyone for BI Publisher:
Oracle BI Publisher Enterprise
Add BI Publisher Reports to Dashboard - Everyone
View BI Publisher Reports - Everyone
Schedule BI Publisher Reports - Everyone
Send BI Publisher Reports - Everyone
Build BI Publisher Reports - Everyone
Analyze BI Publisher Reports - Everyone
but users still get the below error:
The error message is :
"Unauthorized Access: Please contact Administrator"
Any help is greatly appreciated.
Regards

Hi Saichand,
Thanks for the reply, I did add and it worked successfully; but the issue now is that I had assigned the XMLP_ADMIN, XMLP_DEVELOPER roles to this user and he now has XMLP Administration rights. Which is not very good.
Is there any workaround to restrict XMLP Administration to this user and allow him just to view the BI Pub Report?
Your comments are greatly appreciated.
Best Regards
B

Similar Messages

  • Unable to view FF reports in the front-end of FF 5.2 tool

    After installing the FF tool on Netweaver, I am unable to see the reports from the back-end (R/3) system. The R/3 system has the FF 5.2 RTA installed and a user Id defined to connect to front-end of FF 5.2.
    I configured the FF 5.2 connector, but still am unable to view reports from the front-end.
    any suggestions would be helpful.
    Thanks,
    Kapil

    I was able to resolve the issue by maintaining the gateway in the SAP adapter and running the transaction /VIRSA/ZRTCNFG on the abap side
    thanks for the suggestions
    Kapil

  • Visual Studio 2010 Upgrade - Unable to view some reports

    I converted an application that had been developed in VS2005 so that it would run in VS2010.  The application contains several Crystal Reports.  Now when I debug the application I can only view some of the reports.  With the others I get an exception with the message "Unable to find the report in the manifest resources.  Please build the project and try again." 
    The ones that work and the ones that don't all have the Build Action set to Embedded Resource.  I have tried removing a report from the project and then adding it back, but that made no difference.  A new report displayed fine. 
    Does anyone have any ideas about what could cause some of the reports to throw this exception?

    OK, here is the link to the thread I am replying to Visual Studio 2010 Upgrade - Unable to view some reports
    And here is what I posted to start the thread that I am replying to:
    I converted an application that had been developed in VS2005 so that it would run in VS2010. The application contains several Crystal Reports. Now when I debug the application I can only view some of the reports. With the others I get an exception with the message "Unable to find the report in the manifest resources. Please build the project and try again."
    The ones that work and the ones that don't all have the Build Action set to Embedded Resource. I have tried removing a report from the project and then adding it back, but that made no difference. A new report displayed fine.
    Does anyone have any ideas about what could cause some of the reports to throw this exception?
    As you can see, I have described the exception that occurs when I try to view some, but not all, or the reports while debugging.  I have also tried deleting a report and adding it back in but it made no difference.
    Is this enough information?

  • Unable to view custom report generated in Manage Content and Structure !!!

    Hello,
    I am farm administrator and I have created report to view all checked out documents for site collection.
    as below:
    Title : All Checked Out Documents
    Query : <Where><Geq><FieldRef Name="CheckoutUser" LookupId="TRUE"/><Value Type="int">0</Value></Geq></Where>
    Issue:
    When I see the report , I am able to see all checked out documents.However site admin and owner is unable to view this report.
    They are getting following message:
    There are no items to show in this view.
    Would you please let me know what can be the root cause and how can I resolve it ?
    Thanks and Regards,
    Dipti Chhatrapati

    Dipti,
    This is by design and Unfortunately, no one else can see the documents because they have never been checked in. Even the site owner
    can't see the documents.  However Site collection admin can see everything.
    Fortunately, there is an easy way to handle this situation. The site owner can go to the Document Library Settingspage and click on the link to Manage
    checked out files.
    From here, he can select the documents and click the Take Ownership of Selection link.
    Few links: CHECKING OUT DOCUMENTS =
    NO ONE ELSE CAN SEE THEM!
    Hope it will help :)
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Create prompt inisde the report not the dashboard promt

    Hi All,
    I had this rek today saying that i need to create a prompt inisde the report not the dashboard prompt.can anybody help me how to create the prompt inisde the report.

    Hi,
    In Compound Layout we have the option ->Other Views -> No Results View click on that and Edit the No Result view and Type what you want in Text portion.
    Thanks,
    Balaa...

  • I am unable to view imported certificates in the certificate manager in Firefox.

    ''dupe of https://support.mozilla.org/en-US/questions/909905''
    I am unable to view imported certificates in the certificate manager in Firefox.

    Many thanks SafeBrowser; I think the Yahoo and Babylon extensions were the problem. Didn't want them anyway!

  • Dequeuing the message using Non Sys user

    Hi all,
    I've implemented Advanced Queuing in one Schema(Say "temp") which has AQ privileges. My requirement is Asynchronous Communication between two programs.
    In One program i've DBMS_AQ.ENQUEUE to put the message onto the queue. The user "temp" enqueued the message.
    I've a anonymous PL/SQL callback procedure registered to dequeue the message. but while dequeuing the message, the user is "SYS". Immediately after dequeuing the message, i've a call to the second program which uses some views. In my application we have dba policies applied to these views. So only temp user can access those views where SYS user doesnt have any access to these views.
    we already have one solution i.e., giving access to SYS user also but this will result in some other security concerns for the application
    Another solution could be dequeuing the message with "temp" user (NON sys user).
    So i would like to know whether it is possible to dequeue the message with NON-SYS user ? i've tried searching the dequeue options and message properties but couldn't get anything..
    can anyone help me in solving this problem??

    Hi paul,
    Thanks for the response :). I've tried this already but still the dequeue user id "SYS". i'll explain you in detail with the code.
    I've create queue table and queue with the following code :
    create or replace TYPE temp_msg_type as object (seq_no NUMBER(10),
    req_type varchar2(6))
    begin
    dbms_aqadm.create_queue_table(
    queue_table => 'test_queue_tab',
    queue_payload_type => 'temp_msg_type',
    multiple_consumers => true);
    dbms_aqadm.create_queue(
    queue_name => 'test_queue',
    queue_table => 'test_queue_tab');
    dbms_aqadm.start_queue(
    queue_name => 'test_queue');
    end;
    After this an Agent is subscribed to this queue.
    begin
    dbms_aqadm.add_subscriber(
    queue_name => 'test_queue',
    subscriber => sys.aq$_agent('recipient', null, null));
    end;
    Then registered an PL/SQL callback procedure to this queue.
    begin
    dbms_aq.register(aq$_reg_info_list(
    aq$_reg_info('test_queue:RECIPIENT',
    DBMS_aq.NAMESPACE_AQ,
    'plsql://notifyCB_prd',
    HEXTORAW('FF')) ) ,
    1);
    end;
    The follwing procedure will enqueue the message. in the below code before i enqueue it i am inserting the current sessions' user, it got printed as "SCOTT".
    create or replace procedure enqueue_msg_prd( O_status_code IN OUT varchar2 )
    as
    enqueue_options dbms_aq.enqueue_options_t;
    message_properties dbms_aq.message_properties_t;
    message_handle RAW(16);
    message temp_msg_type;
    begin
    --enqueue_options.visibility := DBMS_AQ.IMMEDIATE;
    message := temp_msg_type(112, user);
    O_status_code := 'S';
    dbms_aq.enqueue(queue_name => 'test_queue',
    enqueue_options => enqueue_options,
    message_properties => message_properties,
    payload => message,
    msgid => message_handle);
    end;
    The following procedure will dequeue the message. this procedure will be automatically triggered when i commit the enqueue transaction since there is anonymous callback procedure registered for this queue. In the below code after i dequeue it i am inserting the sessions' user, it got printed as "SYS".
    create or replace
    procedure notifyCB_prd( context raw,
    reginfo aq$_reg_info,
    descr aq$_descriptor,
    payload raw,
    payloadl number)
    as
    dequeue_options dbms_aq.dequeue_options_t;
    message_properties dbms_aq.message_properties_t;
    message_handle raw(16);
    message temp_msg_type;
    begin
    dequeue_options.msgid := descr.msg_id;
    dequeue_options.consumer_name := descr.consumer_name;
    --execute immediate 'conn  session set current_user= scott';
    DBMS_AQ.DEQUEUE(
    queue_name => descr.queue_name,
    dequeue_options => dequeue_options,
    message_properties => message_properties,
    payload => message,
    msgid => message_handle);
    insert into temp values(message.seq_no,user);
    commit;
    end;
    Even i queried the aq$test_queue_Tab view. in this view, value in deq_user_id is "SYSS"
    is there any way to get the users session as 'SCOTT' ??

  • Allow a windows non-administrator user to run cmd.exe as administrator without sharing administrator password with the user

    I have standalone Windows 2003 and 2008 Oracle database servers (they are not in a Windows domain environment ). The Oracle DBAs can perform all their routine activities from command line with administrator privileges. For this i've to either share administrator
    user password with the Oracle DBAs or add their windows login user to Administrators group. If i can give the DBA user permission to run windows command prompt without sharing administrator password, i can give them non-administrator login access to Windows
    2003/2008 server. Normally when a non administrator user would try to run a program as administrator on Windows 2008, the user is prompted to input administrator username/password. Is it possible to give non-admin user access to run a program/application (cmd.exe
    in this case) on Windows 2003/2008 without sharing administrator credentials with them?

    With the OTORISER application I developed, normal users can run applications with admin privilege …  
    Otoriser is totally free ! Applications, mmc consoles, control panel cpl files can be run under admin and system context with Otoriser. Let’s say you donot want your users to be admin in their machines, but want them to run some applications with admin rights.
    If this is the case then you are on the right blog.
    There are two components for Otoriser. Management and client components. There are no complex implementation and no frustrating steps to be performed. Within 10 minutes you can start testing the results
    After you download the setup files, install client components in the client by running it directly (or any deployment method you have), it will take about 5 seconds to install it. Then, let’s say you want your user to change system properties of the machine.
    With the tool provided in Admin package produce the hash of system.cpl file and enter that hash into the group policy (details are provided in documentation). When policies are applied for that user then he or she can run that control panel applet under admin
    context but donot forget that the user is still an ordinary user.
    download link :
    http://burakuysaler.wordpress.com/2013/02/21/with-the-otoriser-application-that-i-developed-normal-users-can-run-applications-with-admin-priviledges

  • How to remove the hide option in the obiee report at the dashboard

    Hi,
    I've created a report in obiee 11.1.1.6.0 and placed on the dashboard. When i do right click on the report i can list of option of user controls. Using the edit properties i have unchecked all the controls, even though i can see the hide column option in the dashboard report. User should not have access on report controls. How can i remove the hide column option.
    Please guide me on this.
    Thanks,
    Ram

    Hi RM,
    Thanks of the information.
    I've did as per your reply, even though the column is showing hide the column when right click on the column.
    could you provide other alternative.
    Thanks,
    Ram

  • Unable to view new tasks in the UWL

    Hi all,
    I am using EP 7.0 SP8 and backend R/3 4.6C. I  configured by Worklist and work items to my UWL with the backend .My Problem is I am unable to view the New OR  in Progress Tasks in the UWL but  i am able to view the completed tasks in the UWL.
    Is the Problem with the backend R/3 version or some thing else?
    Please help me..
    Thanks and Regards,
    Sateesh.

    Hi,
    Check whether the release rule you are running has the option Auto Allocate (Inventory Tab) is YES.
    If it has NO then you have to run the Move Order Pick slip program with auto allocate move orders as YES and order types as pick wave for material allocation to happen.
    once material is allocated you should be able to view them in WCB atleast.
    After you find them in WCB but not on telnet then check you resource and device setup.
    Karthik.

  • Viewing HFR reports in the same window via task list url link

    Does anyone know how to render an HFR report inside the Planning application or even in Workspace when referencing the report's url through task list? This is with version 11.1.1.3. It doesn't seem like this version allows the task list to be built to pull up the report within the Planning application window, or even as a separate Workspace tab. I also want to be able to switch from pdf or html preview when viewing the report, but this option isn't allowed when opening the report via task list. A separate pop up appears for the report, which isn't what I want.
    Anyone know of a fix or workaround?

    This sounds like part of your issue :-
    9549216 - Instead of a new tab, a new window displays after you create a Financial Reporting task in Workspace.
    Fixed in patch 11.1.1.3.02
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Unable to view some iviews in the portal

    Hi,
    We are unable to view some of the iviews in the portal. For example i go to System Administration>System Configuration> I should see portal content and the list of systems etc but i get a Page Cannot Be Displayed error. But we are able to view this on the server machine. The server is in a different network. What could be the problem. We have EP 7.0 .
    Regards,
    Sridevi

    >But we are able to view this on the server machine. The server is in a different network. What could be >the problem. We have EP 7.0 .
    If you are able to see into Server then it means IViews are working fine, then it seems to be network issue, the applciaiton might be blocked so you can check the network setting.
    Regards,
    Subhash

  • NMH405 - Unable to view any files using the FIle Browser

    Hello,
    I logged in to the FIle Browser, hoping to delete some photos from my media hub. However, I am unable to view any music, photo, or video files on this page, nothing listed. All blank when I clicked on these 3 folders.
    No problems accessing the actual files in their respective pages. I could play the music and video files, and view the photos. But I can't carry out any maintenance on them via the File Browser.
    Checked the User Guide, but couldn't find any clues to this problem. Could someone please help me?
    Thanks!

    Hi there,
    Files that were imported and stored on the Import Folder won't be detected on the NMH File Browser. You may only see them if you manually classify the files to it's corresponding folder.
    It means, you need to move the files based on their file type. AVIs, WMV, etc. should be placed on your Videos folder .. Mp3s, Wavs, etc. should be moved to the Music folder .. Jpgs, Gifs, etc. should be moved to Pictures folder ..
    Hope this clarifies your concern.
    Cheers!

  • Saving the report in the Dashboard.

    Hi,
    If I try to save a report in dashoboard after modifying its asks me to save in folders not that particular dashboard.
    Do I need to save in folder and then from there I need to put in dashboard?
    Please suggest.
    Thanks.

    no need.. just save that report, it will reflect on the dashboard..
    Hope ur using Modify request option in edit Dashboard,press ok then it ask for want to replace it?--> yes.

  • View Access Reports on the web Through Sharepoint?

    I am using MS Access 2010 as a front-end to a 2008 SQL Server back-end.  Reports produced are complex and printed in PDF form.  I want to make them available for viewing on the web. This will prove very useful to customers that make changes to
    the SQL data and want to see a new report.  The reports are already designed and saved in the MS Access database under various report names.
    Questions:
    1) How can I execute a saved MS 2010 Access Report from an asp page where the customer makes data changes?
    2) Once the new MS Access Report is created, how do I retrieve it to show to the customer?
    I assume Sharepoint Server will work for this purpose, but after numerous web searches, I am confused about what I am seeing as to whether it can definitely do it or not.
    FYI ... I also design web pages via Visual Studio 2010 if that makes a difference for integration purposes.
    Steve

    The standard answer to this, is that you'll need to publish the database to sharepoint using Access Services.  Once your database is inside of SharePoint as a site, you still have to make sure that SSRS is functioning, because that's what's used in
    the browser to display the reports. 
    Laura Rogers
    SharePoint911: SharePoint Consulting
    Blog: http://www.sharepoint911.com/blogs/laura
    Twitter: WonderLaura
    Books:Beginning SharePoint 2010: Building Business Solutions with SharePoint
    Using InfoPath 2010 with Microsoft SharePoint 2010 Step by Step

Maybe you are looking for