Viewing the discoverer reports through portal

How can i view oracle discoverer reports through portal .Suppose
i have portal page where i want to create few links on clicking
of which these reports are renderer on the portal.
What configuration is required for doing this ? i mean to enable
the discoverer view what steps are required and what url is
given .
Any suggestion will be of great help.
Neeti

Hi All,
We are also having similiar type of error in our portal. 
com.sap.engine.services.prtbridge##com.sap.engine.services.prtbridge
#######SAPEngine_System_Thread[impl:5]_13##0#0#Error#1#/System/Server#Plain###
The cluster server element 125898350 is not added in the EP cluster context,
   because prtbridge on 125898350 is stopped  or not yet started
(maybe the server is starting or shuting down).
We have implemented the FPN using RRA.
This error comes only for few users when they navigate in Portal. After clearing the cache, it works for all. Kindly help us to resolve this issue.
Regards,
Venkatesh

Similar Messages

  • How to order the Discoverer reports through MENU function sequence

    I created 20 Discoverer reports functions in the MENU form, there is a sequence column,
    but when the 20 Discoverer reports displayed on OSO, they are not ordered by the sequence number, looks like just randomly listed. How can I make the 20 Discoverer Reports ordered by the sequence number when displayed on OSO?

    Hi ram,
    There are steps to register in oracle applications so there wont be any login poped up.Below is the link in that viewer and plus acces with e-business suite
    http://ascbi.com/thirdparty_documents.htm_
    hope it helps you,award points.
    By,
    KK

  • BI report through portal

    Hi,
    I am trying to create a iView to access the BI report through Portal.
    We have done SSO and other configuration.
    While previewing the iView I am getting the following error.
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Could not find portal application com.sap.ip.bi.service.generic.
    Exception id: 08:17_28/07/08_0024_4848350
    See the details for the exception ID in the log file
    Any idea ???
    How to check log files ??
    Regards,
    Niraj

    Hi,
    Check these.
    http://help.sap.com/saphelp_nw04s/helpdata/en/a3/7b583c2439e66fe10000000a114084/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b0a5216a-349c-2a10-9baf-9d4797349f6a
    /thread/826292 [original link is broken]
    /message/3945089#3945089 [original link is broken]
    Configuring EP for connecting to BW
    Regards.

  • Determining the parameters passed in a Discoverer Report through SQL query

    Hi,
    I want to know the parameters passed in a Discoverer Report through a SQL query.
    i.e if we pass the Report name (Workbook Name) then we get the paramaters used .
    Is there any way we can do this.
    Any help will be really appreciated.
    Thanx in advance
    Ankur

    Hi
    You can indeed get the parameters from the EUL5_QPP_STATS table, although they are extremely difficult to get at.
    Look at this script:
    SELECT
    QS.QS_DOC_OWNER    USER_NAME,
    QS.QS_DOC_NAME     WORKBOOK,
    QS.QS_DOC_DETAILS  WORKSHEET,
    TRUNC(QS.QS_CREATED_DATE) DOC_DATE,
    *(LENGTH(TO_CHAR(EUL5_GET_ITEM_NAME(QS.QS_ID)))+1)/9 ITEMS,*
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),1,  6)) ITEM1,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),10, 6)) ITEM2,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),19, 6)) ITEM3,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),28, 6)) ITEM4,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),37, 6)) ITEM5,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),46, 6)) ITEM6,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),55, 6)) ITEM7,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),64, 6)) ITEM8,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),73, 6)) ITEM9,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),82, 6)) ITEM10,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),91, 6)) ITEM11,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),100,6)) ITEM12,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),109,6)) ITEM13,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),118,6)) ITEM14,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),127,6)) ITEM15,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),136,6)) ITEM16,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),145,6)) ITEM17,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),154,6)) ITEM18,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),163,6)) ITEM19,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),172,6)) ITEM20
    FROM
    EUL5_QPP_STATS QS--,
    --   APPS.FND_USER          USR
    WHERE
    --   QS.QS_DOC_OWNER = '#' || USR.USER_ID AND
    *(LENGTH(TO_CHAR(EUL5_GET_ITEM_NAME(QS.QS_ID)))+1)/9 < 21*
    AND QS.QS_CREATED_DATE > '01-JAN-2007'
    What this does is return the first 20 items used in a worksheet. It does this by passing 6 characters at a time out of a cusror made up by concatenating QS_DBMP0 to QS_DBMP7 to get the Dimensions and then again by concatenating QS_MBMP0 to QS_MBMP7 to get the Measures. Having got that cursor it then takes each 6 characters and passes them to a nibble algorithm to decode the actual item. The code is extremely difficult to follow.
    I mention this because other fields in the same table are QS_JBMP0 to QS_JBMP7 which I believe are Joins, and QS_FBMP0 to QS_FBMP7 which look like Filters (aka parameters) being used. I think the QS stands for Query Statistics and BMP for bitmap. Somewhere in the EUL5.SQL script is the key to unlocking this.
    Good luck. The reason I say this will become apparent when you look inside EUL5.SQL.
    Best wsihes
    Mcihael

  • Only the Admin can view the data in the Discoverer Reports

    Hello,
    Discoverer Version Info:
    OracleBI Discoverer 10g (10.1.2.3)
    Oracle Business Intelligence Discoverer Plus 10g (10.1.2.55.26)
    Discoverer Model - 10.1.2.55.26
    Discoverer Server - 10.1.2.55.26
    End User Layer - 5.1.1.0.0.0
    End User Layer Library - 10.1.2.55.26
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    Everything was working fine until we applied some database patches.
    Users cannot see any data in the discoverer reports. Only the Admin can see data. Even the LOVs do not populate any values for the regular users.
    Can someone please advise as to what is happening?
    Thanks.
    Thanks.

    Hi Akshaj,
    It would certainly be hard for me to replicate (I am on 10g), but perhaps you could identify the patches that were applied and this would help people discern the problem.
    I would narrow down this problem to one business area. Next, identify what users or responsibilities have been granted access using the Discoverer admin tool. Has anything changed?
    Confirm which users have been granted access. Has this changed because of the patch?
    I would look at the session sql to see if there is some change after the patch (something like this):
    select
    from
    v$sql
    where
    parsing_schema_name = 'APPS'
    and module in ('Disco10, DISCOADMIN:Discoverer_login_responsibility','dis51ws@apps_server_url (TNS V1-V3)')
    order by first_load_time desc;
    Hopefully you have a test or development environment which has not received this patch and you can juxtapose the authentication behavior.
    Patrick
    Edited by: Patrick Bacon on Oct 3, 2011 12:55 PM

  • Launching discoverer reports from portal, limitation..

    Hi, I have already discussed this matter via a metalink SR to find that portal cannot launch a discoverer report using discoverer plus, but I have also been referred here by the metalink people so 'product management' can clarify whether the functionality we are seeking is never going to be implemented or if it may be in planning for the near future.
    Specifically, the users want to be able to launch the discoverer reports in discoverer plus, through a portal application accessed on their browsers. (instead of discoverer viewer).
    Thanks

    Actually there is, we just had to work the metalink guys a bit harder. We found this in the Oracle Business Intelligence Discoverer Configuration
    Guide.pdf (as found at http://download.oracle.com/docs/pdf/B13918_03.pdf)
    Page 212 of 304:
    13.5.3 Example 3: Starting Discoverer Plus
    To start Discoverer Plus, connect automatically as jchan to the Sales EUL, open
    a worksheet called January Analysis in a workbook called Monthly nalysis, you
    might use the following URL:
    http://<host.domain>:<port>/discoverer/plus?cn=cf_a156&opendbid=MONTHLY_
    ANALYSIS&sheetid=179
    So as the documentation claimed it to be a feature, we saught further help as the link structure above didn't quite work for us.
    It was assigned to development and a patch was released: Patch# 5403717
    Info:
    Use a new URL parameter 'workbooksource' after the patch has
    been applied.
    URL Guide:
    http://<server>:<port>/discoverer/plus?cn=< >&opendb=<WokrbookName>&wo
    rkbooksource=Database
    Hope that helps..

  • How to find the EUL for the discoverer report in apps

    Hi gurus,
    I am new to oracle discoverer reports.
    I am getting this below error in one of the discoverer report running in Ebiz application.
    "OracleBI Discoverer Viewer was unable to find the necessary data for displaying the results of this event. Please correct any errors and try again.
    - -1 "
    I have found the workbook name from the form function navigation.
    How to connect this workbook through discoverer administrator, Also if you have idea on this above error please advice?
    Regards
    Ram

    Hi Michael,
    HRMS appliocation
    database 10.2.0.4
    windows XP
    ebs 11.5.10.2
    One of our user using disooverer 4i desktop and administration edition on old windows 2000 machine and connecting to schema.
    We are decommision old windows 2000 machine.
    I have installed disooverer 4i desktop and administration edition on new windows XP VM box and trying to connect to same schema which was used with old
    desktop and asking me to create EUL. What is theat I should be doing to use new one same as old one?
    Old box is still there.
    Thanks.

  • Error message in BW Report through Portal

    Friends,
    I really need your help to remove the waring message.
    For the purpose of changing the description on the Selection screen from “Cost Cetnters (Authorised Values)” to “Funds Centers” I had changed the ZCCTRATI variable description to Funds Centers
    Issue:
    When we open the old report we see the following information message.
    " Value if variable ZCCTRAT1 is automatically converted
    I did go to TC RSRT as of Dinesh,Vijay advice ,Just want to know that what message i need to Click .because i could nt find the relevant message
    Can u help me how to remove this ?

    Bhanu,
      Thanks for u r reply.This warning message appears every time i execute the report through portal.
    Any idea ?
    Regards
    Mano

  • Authorization problem to execute a report through portal

    Hi All,
    One of user while trying to execute report through portal, getting error message saying that
    "you are not authorized to execute the report XXXXXXX'
    Can not load query <query name> (data provider <data provider name> No authorizations for requested service.
    The report is a web template which is getting executed through portal.
    User is having all the authorizations to execute the report(report autho as well as infoprovider autho also)
    we have regenerated the user roles , done user comparision....every thing is OK.
    Still unable to execute the report.
    Please advice what can be done in this case....
    Regards

    Hi Shaik,
    Are you able to run this report with your user id?
    If so check the role or authorization objects which are missing to the user.
    And also check whether he got portal roles assigned to his profile.
    Regards,
    Ravi Kanth
    Edited by: Ravi kanth on May 12, 2009 2:06 PM

  • Portal Runtime Error while accessing BW reports through portal

    Hi,
    We are facing portal runtime error(An exception occurred while processing your request. Please send the exception id to your portal administrator) while accessing BI reports through portal frequently.
    We are unable to trace the error in the 'default trace' log file and although refreshing the cache solves this issue, it is difficult to explain this to every user individually.
    After many such errors, We found one log entry, which we are now not yet sure if it is relevant. The error states:
    1.
    com.sapportals.portal.prt.runtime.PortalRuntimeException: Exception in SAP Application Integrator occured: Unable to parse template &#39;&lt;System.Access.WAS.protocol&gt;://&lt;System.Access.WAS.hostname&gt;&lt;BWLauncherComponent[PORTAL_URL]&gt;;jsessionid=&lt;Request.JSessionID&gt;?sap-ext-sid=&lt;ID[url_ENCODE]&gt;&amp;Language=&lt;Request.Language&gt;&amp;theme=&lt;LAF.Theme[url_ENCODE]&gt;&amp;sap-lafversions=&lt;LAF.AllVersions[url_ENCODE]&gt;&amp;&lt;Authentication&gt;&amp;&lt;Report&gt;&amp;&lt;BusinessParameters&gt;&#39;; the problem occured at position 230. Cannot process expression &lt;LAF.AllVersions&gt;
    at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContentPass(AbstractIntegratorComponent.java:125)
    at com.sapportals.portal.appintegrator.AbstractIntegratorComponent.doContent(AbstractIntegratorComponent.java:98)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:540)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:423)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Content pass of Application Integrator failed.
    Component Name:       'com.sap.portal.appintegrator.sap.BWReport',
    Context Name (iView):  <iview name location>
    Top Layer:            'BWReport/TopLayer',
    Producer ID (FPN):    'null',
    System Alias:         'Sap_bw',
    2.
    The cluster server element 111111 is not added in the EP cluster context,
       because prtbridge on 111111 is stopped  or not yet started (maybe the server is starting or shuting down).
    Please suggest us if the above logs are related to the issue or not
    Kindly provide us any inputs or solutions.

    Hi All,
    We are also having similiar type of error in our portal. 
    com.sap.engine.services.prtbridge##com.sap.engine.services.prtbridge
    #######SAPEngine_System_Thread[impl:5]_13##0#0#Error#1#/System/Server#Plain###
    The cluster server element 125898350 is not added in the EP cluster context,
       because prtbridge on 125898350 is stopped  or not yet started
    (maybe the server is starting or shuting down).
    We have implemented the FPN using RRA.
    This error comes only for few users when they navigate in Portal. After clearing the cache, it works for all. Kindly help us to resolve this issue.
    Regards,
    Venkatesh

  • Unable to run a report through Portal.

    Hi All,
    I am not able to run a particular BEX report through portal.
    I get a white screen and no pop-up for selections and later nothing happens.
    I have checked my Roles but no changes has been made.
    My other colleagues are able to run the report.
    Please let me know what could be the possible reason/solution for such an issue.

    are different roles assigned?
    i.e., for you and for your colleagues.  Please try login with your id in their PCs and vice versa.
    let check the compatibility. if you are failed to execute in that PCs also, then it should be authorization issue. Ask your basis folks to add that particular info area and info cubes to your role.
    Hope this would give you clear pic.

  • Error while viewing the shared report

    Hi
    After sharing a worksheet to another user and try to view the report from the other user, it displays the following error:
    " A measure is missing or is invalid.
    This worksheet may not display data correctly. Please edit this worksheet using OracleBI Discoverer Plus for OLAP to correct the problem. "
    whereas when i log in as the person who created the worksheet, im able to view the report perfectly..
    I tried to save the worksheet's dimension and shared that one too..
    but cud'nt see the shared report.
    The error occurs only when the other user tries to view the shared report and the same report work fines when the owner of the report views it.
    Please help us out on this issue.
    Thanks
    S. Kokila

    Hi,
    Have you made sure that the user you're trying to view the report as has select access on the underlying AW?
    You can grant select on the underlying AW by logging in as it's owner and then:
    grant select on AW$<awname>
    where <awname> is the name of your AW.
    Hope this helps.
    Mark..

  • Error in viewing the customized reports in XL reporter

    Hi,
    I am using SAP B1 2007A. My problem is on viewing the customized reports I made through the XL reporter. I made a profit and loss report and saved it under the financials folder then financials sub folder. Before I still can view it through my SAP B1 main menu. All of a sudden, when I try to view again, I can't view any financials customized report. However, I have customized reports in other folders like the sales and purchasing and I can view them. I checked in the XL reporter itself by opening it through tools, xl reporter and I noticed that my financials folder was renamed to new folder and when I opened the financials sub folder, my customized reports were there but I can't view them in the sap main menu. I have 6 databases in my SAP and only 1 dbase has this problem. What might be the reason? Please help.
    Thanks,
    Jackilou

    Hi Jackilou,
    The problem you are facing is due to XLR error.  Just try restart you B1, it will normally be fixed by itself.  If your problem persist, log a support ticket to SAP.
    Thanks,
    Gordon

  • Regarding Issue when Exporting the Output of the Discoverer Report to Excel

    Hi,
    Can Any of you guys help me out in this issue. I am exporting the Discoverer Report Output to Excel sheet, I am able to export but while I am opening the excel sheet I am getting an error saying "UNABLE TO READ FILE".
    Please help me out in this Issue, it is so urgent.
    Thanks in Advance..
    Raja.

    Hi,
    Is there any way to export the output of scheduled Discoverer Reports to a particular server using Discoverer plus.Only by openning and exporting each report manually.
    is there any way to get the output name in a particular syntax. I want to concatenate date in the output name.Only by entering the filename when you do the export.
    The best way to do this is to use Discoverer Desktop and a third party scheduler. Then you can export all your reports automatically and define the filename used in the output. Search this forum for more information on third party schedulers.
    Rod West

  • Displaying Discoverer report through Apps Form

    Hi all,
    I have a question as to, is it possible to call a discoverer report created in discoverer desktop and which is stored in the database., from an Oracle Apps form using the following method
    WEB.SHOW_DOCUMENT(url,target).. and if yes what url needs to be passed.
    Thnx
    Shruti

    If you have a 11.5.10 instance with Advanced Supply Chain Planning setup (of a Vision Instance), apply 4103334 PLANNING DETAIL REPORT FOR MSC PATCHSET J
    Then look at the function MSCPLDTL_DISC, it makes a call with Parameters Workbook=MSC_PLAN_DET_REP_WB&Parameters=Sheet~1*, of Type SSWA plsql function and HTML call OracleOasis.RunDiscoverer.
    The form that launches the Discoverer report is MSCPLDTL.fmb.

Maybe you are looking for