Disco Portlet "View Worksheet" link

We are running Discoverer 9.0.2.53 and Portal 9.0.2.3
We have Discoverer portlets that were created using a private connection. When clicking the "View Worksheet" link, users are prompted for the password. Creating a connection in Viewer using the EUL owner connection is a work around but was unacceptable to the developers mainly because the users can delete the connection.
I reviewed 8.4.3 of the 9iAS Discoverer Configuration Guide to start Discoverer without exposing a password in the URL but the "View Worksheet" link in the Discoverer portlet is dynamically generated by worksheet_run.xsl. That style sheet can't be modified. I had opened TAR 3225992.995 trying to get suggestions and the discussion is covered here.
I did some more investigating and if I click on the "View Worksheet" link and add a URL parameter "&pw=password" I can connect with no problem but that would still entail modifying worksheet_run.xsl and I cant hide the URL with Portal. I can hide the URL parameters in viewer if there is a viewer connection.
We are currently logging in as each user that should have access to these 200+ Discoverer portlets as they are added to OID and set up a viewer user defined (Private) connection as a work around even though it is unacceptable to the customer. It is also an administrative nightmare for us.
Any suggestions appreciated, Ron

Hi
I'm not certain with regards to this being configurable in 10g R1. If it is, it will more than likely be done when you set up the portlet initially. Certainly this is the way it is done in 10g R2. I'll dig around and see what I can find. Sorry I can't be more help at this stage.
Best wishes
Michael

Similar Messages

  • 10g Disco Portlets : Scalability across hundreds of users

    Hi,
    Looking for some insight to scaling disco portlets across hundreds of users. Using Discoverer 10g 10.1.2 and have a portal with about 25 Disco Portlets scattered across a few portal pages. (Using Oracle Portal also) Every user gets the same pages, but the content of Disco portlets is different by user.
    Most of the Disco Portlets are Worksheet Portlets showing a table + graph, the remaining disco portlets are Worksheet List portlets. Some portlets refresh hourly, and some are once a day.
    We've staggered hourly portlets at different times of the hour so they don't all refresh at say the 00 mark of each hour. Portlet A refreshes at 00 minute mark, Portlet B refreshes at the 10 minute mark, etc.
    Because each user needs to see different data, the disco portlets all use private connections vs. public connections, so each portlet graph shows different data depending on the user.
    What's happening is at the 00 minute mark, each user is having their Portlet A being refreshed. As the number of users grows, this just gets worse and worse. There seem to be refreshes happening constantly. The kicker is, these hourly refreshes happen regardless of the user looking at the portal that day or not.
    We're having challenges with scaling the portal as the number of users is growing. How did Oracle envision Disco Portlets to scale with hundreds/thousands of users? All we can do is stagger the hourly refreshes, but we can't stagger the users.
    We have Disco running on one unix server, the database on a 2'nd server, Portal on a 3'rd and Infra on a 4'th.
    Any insight into scaling Disco Portlets for the above scenario would be helpful.
    Thanks.

    Hi,
    Let me see if I can start the ball rolling for you on this one with some insight from previous implementations.
    "What's happening is at the 00 minute mark, each user is having their Portlet A being refreshed. As the number of users grows, this just gets worse and worse. There seem to be refreshes happening constantly. The kicker is, these hourly refreshes happen regardless of the user looking at the portal that day or not."
    1. The portlets will get refreshed once per main portlet and an additional refresh for each customization. This could explain why you are seeing more refreshes than you expected.
    2. The refreshes will occur per the schedule to refresh the data in cache whether or not the user is logged in.
    The way is works at very high-level is like this:
    The PortletProvider is a J2EE application running under OC4J_BI_Forms container.
    It polls PTM5_SCHEDULE table every 2 seconds or as specified by peekSleepIntervalSec parameter in the configuration.xml
    If a portlet refresh is found (ie the scheduled refresh time arrives) then the information about the refresh is added into a job queue within OC4J_BI_Forms.
    Java threads pick up jobs from the queue (parallel processing, maxsessions).
    For each job a session is picked up from the session pool, query is generated and sent to EUL/database to retrieve data.
    Next, retrieved data is processed into XML and stored in PTM5_CACHE table as BLOB.
    The PTM5_SCHEDULE table is updated with Last Refresh Date and Next Refresh Date, etc.
    The next time the relevant portlet is accessed in a browser refreshed data are read from PTM5_CACHE (and formatted per customization).
    Discoverer Portlet sessions can be pooled, enabling them to be reused by different Discoverer Portlets. Pooling Discoverer Portlet sessions saves CPU and memory resource usage.
    You can see how to control these parameters via the Application Server Control or $OH/discoverer/configuration.xml file in the documentation here:
    http://download.oracle.com/docs/html/B13918_03/con_files.htm#sthref1195
    Now having said that, there have been a few bugs in the Portlet provider regarding how the session pool behaves and one that does not kill existing dis51ws processes.(bug 4929480)
    I also seem to recall from past a bug about hourly refreshes specifically.
    (bug 4929480) is documented in
    Note 436135.1     Discoverer 10g (10.1.2) Sessions (dis51ws) Are Not Terminated After Timeout Causing Users Unable To Login     
    Oracle has produced some patches, but which one you apply really depends upon your version, environment (ie. EBS11i/SSO integrated or not), current patches applied and your platform.
    You may have to work that out with Oracle Support, but I can tell you in general some good one-off merge patches that you should apply (based on my experiences).
    From the note above:
    For versions 10.1.2.1 / 10.1.2.0.2 (Discoverer 10.1.2.48.18 and 10.1.2.50.05):
    Patch 5922220 is the latest known Portlet merge patch on top of 10.1.2.1 (10.1.2.50.05) for E-Business Suite Single Sign-On integrated customers and Patch 5497101 is the latest known Portlet merge patch on top of 10.1.2.1 (10.1.2.48.18) for other customers. Both of these patches include the above fix.
    # For versions 10.1.2.2 (Discoverer 10.1.2.54.25):
    * We recommend you apply Discoverer "cumulative patch II" ( Patch 6129303 ) as directed by Oracle Support if it is appropriate for your environment.
    I would consider:
    A.) Make sure you are patched appropriately
    B.) Make sure you have tuned your Discoverer portlet session pool.
    C.) If the load is large enough, you may need to consider an additional Discoverer standalone server with a load balancer.
    A note on that: Load balancing portlets is a bit different than standard HTTP applications (Plus/Viewer) since each portlet application on each server will be checking the refresh table in the metadata repository (infrastructure) database.
    You will have to ensure:
    a.) the times on each server is synchronized
    b.) the the peeksleepinterval is adjusted on each server to accommodate a smaller server vs. larger server (ie. which one you want to pick up more of the refreshes)
    Oracle Support has documented those pretty well in MetaLink document 360310.1     How Discoverer Portlet Provider Refreshes Are Distributed In A Load Balanced Environment
    I hope that helps get you started.
    Other comments / experiences welcomed.
    Regards,
    Steve.

  • Howto Display Worksheet in IE browser other than thru Portlet/Viewer

    Howto Display Worksheet in IE browser other than thru Portlet/Viewer.
    We wish to develop some worksheets and display them as BI Dashboards
    links on our Intranet Home page. Is it possible to host it on Oracle10gAS
    HTTP server as jsp pages?

    Have tried to remove *or disable* your contentFlow script to see if that helps causes a error?

  • Popping up Disco portlet in portal?

    Hi folks.
    This is a Discoverer portlet question for 9iAS. In short, it seems that you can't set a portlet to pop up. (I am not trying to pop up Disco Plus or the Viewer -- I am trying to pop up a portlet specifically. In the tar I've entered at Oracle support, it seems that this last point is hard to grasp.)
    A nice feature of the 9iAS portal is that a portlet can have its attribute set so that instead of showing in a portal region, it displays in a new browser region.
    The way you do this is:
    1. Define and refresh the portlet as usual.
    2. Go to graphical layout mode and click the pencil to change the attributes. Set the "Display Options" attribute to "Link that Displays Item in New Browser Window."
    3. Now go to the Region attributes, click the Attributes/Style tab, and make sure that the attribute "Display Name or Image" is included in the Displayed Attributes.
    4. Now return to your page view.
    5. Click on the link for the worksheet.
    6. You will see the portlet pop up, but it says: "Error: The portlet has not been defined."
    This is of course wrong, because if you change the display back to "Item Displayed Directly in Page Area," it shows fine.
    Other parameterized (i.e., customizable) portlets work fine: For instance, database portlets pop up just right.
    Can someone verify this for me?
    Note that this a portlet I'm trying to pop up. Popping up a Viewer page is not adequate, because I want to use the simple portlet customization features. Also, popping up a Plus session is not good either in our environment.
    [Aside: Unless I am wrong, this is another example of Discoverer's inadequate integration with 9iAS portal. Among the other important issues are: You can't pass page parameters to a Disco portlet; the little drop-down arrow that is supposed to "minimize" the portlet doesn't work; data points aren't headed right in portlets or the viewer; Viewer URLs with MANY parameters don't work; I could go on and on.]

    After some interchanges with Support, it turns out that this functionality does not exist due to architectural issues regarding the Discoverer/Portal integration. The problem has been logged as a bug. They guess: Maybe 9.0.5.

  • Portlet Item Attr: "Link That Displays Item in New Browser Window"

    I have been searching the forums for a similar experience, but haven't found anything quite like this:
    I have a couple of portlets. One is a Discoverer Portlet, the other is something more basic: The "Developer News" portlet from the 9iAS Community portlet provider.
    After defining the portlets and looking at them, I edit the page and click the Edit button (little pencil) to edit the attributes.
    There are radio buttons for Display Options.
    One option is: "Link that Displays Item in New Browser Window."
    When I select this, OK, and then go back to the page, **the portlet doesn't show at all any more! There is no link, no nothing. Note that I have defined a Display Name, which should be the text for the link.
    It would seem that this feature flat out doesn't work.
    This technique for a popup works fine for an "Item" defined in an item region.
    Anyone?

    Yes -- I did do that after reading an article on metalink about such issues.
    This actually changes the problem.
    When I add the "Display name and image link" attribute to the region, I now do get a link.
    However, clicking it brings up an undefined Discoverer portlet.
    It works great for non-Disco portlets. For instance, I was able to pop up the "Developer News" portlet from the Oracle 9iAS Community portlet provider.
    I think the problem is that the link that Disco produces does not provide enough information to bring up the particular portlet. For instance, the URL does not have the workbook name, the worksheet name, the parameter values, etc.
    If anyone uses Disco w/ the portal, I would be curious to hear if anyone can reproduce this apparent bug / limitation.

  • Disco Portlet definition in 9iAS: Get drop-down for parameterized sheet?

    The subject line says it all:
    If you have a parameterized sheet, should one get a drop-down of possible values when a Disco portlet is defined in 9iAS Portal? Or does one have to always type in the values manually?
    (I have created a custom item class with the LOV; works w/ Plus, Viewer, and Desktop.)
    John N.
    [email protected]

    After some interchanges with Support, it turns out that this functionality does not exist due to architectural issues regarding the Discoverer/Portal integration. The problem has been logged as a bug. They guess: Maybe 9.0.5.

  • Fast Web View breaking links/bookmarks in PDFs from Word 2007

    I'm running Acrobat Pro 8.1.2 on WinXP, and I recently noticed an issue with PDFs that I'm creating from Word 2007. If I turn on the setting "Save As optimizes for Fast Web View," any links or bookmarks in the file break when I do a Save As. If I turn the setting back off, Save As doesn't break them.
    I had had problems creating the PDFs using the PDFMaker plug-in for Word, so I used the Save As PDF or XPS feature from Microsoft instead.
    PDFs created using FrameMaker are not giving me problems.
    I don't know whether this is related, but the Settings button on the Save As dialog box is no longer active. I'm sure I was able to click it before, but I can't now. And that goes for PDFs from Word or FrameMaker.
    Anyone have any clues?
    ===========================================
    Rick Henkel
    http://rickhenkel.googlepages.com/index.htm

    This is related to a bug in the direct PDF output from Word 2007. I was told that Microsoft has fixed this bug in the final SP2 release (so when the service pack becomes available, this problem will not be present).
    Until then, the workaround is indeed to turn off the "Save As optimizes for Fast Web View" preference in Acrobat (Edit > Preferences > Documents, under Save Settings).
    Shlomo Perets
    MicroType * http://www.microtype.com
    FrameMaker/Acrobat training & consulting * FM-to-Acrobat TimeSavers
    "Improve Your FrameMaker Skills" live web-based training sessions

  • How to generate and view the link of the accelerator

    Hi All,
    I want to generate a link for the accelerator added in Roadmap, I know that I can do it through the button Generate URL of the document attributes,but the problem is, when i click on the button, it says URL generated. Where can I view the link which is generated for a particular document.
    If I see in Solar01 or Solar02 documents, there is seperate tab by name LINK, but there also I am not able to view the link generated.
    Pls help me with your inputs ASAP.
    Thanks & Regards,
    Bharathi

    Hi prakar,
    For some of the documents without asking for user name and password it is displaying ( This is depending on the Local and the client system).
    I mean for the internal SolMan system, its displaying the document, when I do the samething for the client system, it says page not found.
    Pls let me know the settings to be done for me to view the document.
    I will have to use my SolMan username and password to open the document, Correct me if I am wrong.
    Pls let me know the roles to be provided to give access to the user.
    Regards,
    Bharathi.

  • MAM Client - Only User View Manager Link Visible

    Hi,
    I have followed the configuration steps as mentioned in the configuration guide for MAM2.5 SR2.
    but after deploying the application in mobile device, Only the User View Manager Link is visible to me.
    Details about client and server version is as follows
    1. MI client 2.5 SP11
    2. WebAS Server 6.40 SP09
    3. Backend IDES server
    Only thing which I am not sure is whether the plugin
    <b>R/3 Plug-in 2004.1 SP01 for Mobile Asset Management 2.5</b> is added in the Backend or not.
    <b>Is there any way to check whether the Plugin is added or not?
    Also Could this be a problem why we are not able to see other menu specific to MAM?</b>
    Appreciate your help in providing some solution for the above mentioned probelm.

    HI sathya,
    in my last post , actually i was talking about  
    WAS sp 09 and  client sp 11.
         not sure , whether  sp11 client can successfully sync with sp09 WAS.
      it might be one of the reasons?.
    have u changed ur application ?.  or using the standard application?.(i mean added syncbo's or not).
        just check the meRepMeta.xml file , is there any reference to MAM25_090 (item).?
       just change the trace to Information and after sync,
    just look whether there is any MAM25_090 reference in the log.
    <b>Sathya just check,,
    1) meta_childRow.dat
    2) meta_topRow.dat
    3) meta_field.dat </b>
    <b> if there is no data in  MAM25_090 , there will not be one MAM25_090.dat file in the data directory.</b>
    just check in the
    meta_childRow.dat  ,
    MAM25_090 entry got created or not in the folder corresponding to the first sync.
                                     Regards
                                     Kishor Gopinathan
    Message was edited by: Kishor Gopinathan
    Message was edited by: Kishor Gopinathan

  • Unable to view instances link in CMC

    hi all,
    after scheduling a report we get instances generated in history. when we hover the mouse cursor on the success or failed state of the instance, we get a link . on clicking the link we get more details on the schedule instance.
    especially, for a failed instance we get to know the error message.
    So my problem here is the link on the state( failed or success is not visible)
    can somebody plz help.
    rgds
    Shravan

    I have logged in as administrator and still the same and unable to view the link of history status.
    rgds
    Shravan

  • Documents Portlet View

    We're trying to find (or create) a portlet to replace the My Documents and Community Documents portlets.  Out-of-the-box, the portlets display files in a linear fashion, so you can't tell which documents reside in which folder.  IMO, this isn't very functional.
    You can go to "Manage Documents" and that DOES display folders/subfolders, but not from the portlet view. We would like the portlet to display a file-hierarchy, with the ability to "drill-down" into the files, to see the documents that exist in the folder.  Has anybody created anything like this?  Any help would be greatly appreciated.
    - Herbie Wilson
    Port of Seattle

    Hi Herbie,
    A few tools directions to point you in. Take a look at the PTOpener gateway tag which is documented in the Enterprise Web Development Guide. That allows you to open a tree control selector for many Plumtree objects, including folder/documents from the knowledge directory.
    You'd also be happy to know in the EDK v5.0.2 release, which will be available in February with the portal v5.0.2, the EDK's PRC API provides tools to queries, search, and manipulate the knowledge directory.
    A snippet from the new release notes:
    [url[/url][url[/url]New featuresThe following features have been added to the PRC API: ACL (Access Control List) manipulation for Portal Objects.
    Portal Knowledge Directory Document management:
    Document queries with filters.
    Property manipulation.
    Adding/removing Documents from Folders.
    Portal Job management.
    Community Setting manipulation
    PRC Properties for ProfileSource, SavedSearch, Portal Property, and DocumentFolder
    The new PRC Search API has been added for access to the Portal search engine. Search Portal Users, Documents, Folders, and Communities
    Filter searches by search fields: Portal Properties et al

  • Unable to view page link

    I put have a page link on a public page. This link is to a page that is not displayed to the public so that if a person clicks on the link he/she will be redirected to login/new account registration.
    The problem is if I am not logged in I don't see the link on the public page. I have tried enabling item level security and giving PUBLIC users the right to view this link but it still does not work. Does anyone have any ideas how I can do this?
    Thanks in advance,
    Virginie

    This is a feature of page links.
    As a workaround, create a URL item that points to the page. Use the direct access URL of the page (e.g. /pls/portal/url/page/<PAGE GROUP ROOT PAGE>/<SUBPAGE>).
    Regards,
    Jerry
    PortalPM

  • Change color "view cart" link

    Hi i'm looking for a way to change the color for the "view cart" link in this module: {module_shoppingcartsummary,vertical,}
    Any suggestions?
    Thanx,
    Frank

    Ahh, so was visited link. Hard to tell when your not looking at it to offer help
    An anchor you should always look to do the following...
    There are your 3 main states - link, visited, hover.
    You do not need to reference :link because browsers know the html element is a link but you can be specific if you wish.
    So in terms of your css you have
    a,
    a:visited
    a:hover
    Often you will want the visited link to be the same as your main so a css would normally form..
    a, a:visited { color:#333; }
    a:hover      { color:#cc0000; }
    For example

  • Display "View Status" link by executing the package in custom menu

    Hello All,
    I have an EMenu statement (MNU_eDATA_SELECTPACKAGE) to run a package from the custom menu. But once I execute it, I would like to display the view status link similiar to E-data -> view status. Is this feasible?
    Or Is it feasible to display a message after a successful package execution?
    Thanks.

    Hi,
    You can use "MNU_eDATA_VIEWSTATUS" for this purpose.
    Hope this helps.

  • OmniPortlet parameter passing to another portlet (discoverer worksheet )

    how can i use omniportlet's simple parameter form to pass parameter to the other portlet(discoverer worksheet portlet)?
    PLS help
    Korhan YUNAK

    Hello,
    The current version of Discoverer Portlet does not support Page Parameter. This is planned for the next release of the portlet.
    The demonstrations available on http://portalstudio.oracle.com/portaltools will show you step by step how to use the Simple Parameter Form to raise an event, that will send parameters to a portal page.
    Regards
    Tugdual Grall

Maybe you are looking for

  • Scanning with HP LaserJet M1319f MFP

    I nave a Dell  Studio XPS Dewktop computer with Windows 8.1. I installed the latest version of the driver available on HP website - IjM1319-hp-pnp-Win64-en. The printer works; but not the scanner. Any help will be most welcome. Thanking you in advanc

  • Can anyone help with why an iTunes Radio staion no longer plays?

    Been enjoying the iTunes Radio stations, and selected the Christmas Songs station, have been listening to it, editing it and customizing it to make it my own.  However, it will not play anymore when I select it.  All of my other stations play, just n

  • I can't delete an app

    I am stumped. I tried updating an app on my son's iPod Touch and it got stuck in "waiting" mode. I did everything I could to get it started again, but no luck. So far I have tried waiting, tapping the app icon to get it to restart, signed out and bac

  • Keynote LateXit major Problem

    I just installed lateXit and Linkback to be able writing formula. Since then all my shapes (bezier curves) are refrenced as "warnings" when I am saving the file. Getting back to the document, some shapes are gone, or reshaped Dones anybody knows anyt

  • Windows 7 Roaming

    We have deployed two 5508 with code 7.0.235 and 1142 access points.  All clients in that area are either Wyse  thin Win 7Devices running Citrix session or Dell W7 devices. We are having roaming problem even in L2. Coverage is great with target -67 dB