Link to OBIEE 11g Dashboard Page from a 10g Dashboard Page

Hi all,
Is it possible to place a Link object on a dashboard page (within OBIEE 10g) and have that navigate to an OBIEE 11g dashboard page?
If so, how is that implemented?
Our 11g and 10g environments are on different servers.
For business reasons (and budgets) we are not migrating our entire 10g environment to 11g just yet.
Thanks.

You can use Go URL as long as they are on same network domain [Go URL|http://docs.oracle.com/cd/E21043_01/bi.1111/e16364/apiwebintegrate.htm#i1005050]
http://sureshotstrategies.wordpress.com/2008/12/13/integrating-oracle-obiee-content-using-go-url-syntax-2/
http://www.iwarelogic.com/2010/09/integrating-oracle-obiee-content-using-go-url-850/
Hope this helps.
SVS

Similar Messages

  • Action links in OBIEE 11g

    Hi All,
    Can anyone help to understand all Action Links in obiee 11g.
    Thank You,
    Ram.

    Hi Ram,
    Here are a couple URLs with examples on those types of actions.
    Java Method example
    http://www.rittmanmead.com/2010/09/oracle-bi-ee-11g-action-framework-java-ejbs-and-pdf-watermarks/
    Invoke Browser Script
    http://www.rittmanmead.com/2012/07/navigating-to-bi-content-in-obiee11g-and-passing-multiple-parameters/
    Invoke an HTTP Request
    This is a way to create a simple http GET or POST method, you can google around and find any number of examples on this.
    JB

  • When I open Pages from the dock, the page comes up but immediately hangs up with the

    When I open Pages from the Dock,  the page comes up on the screen but immediately hangs up with the rainbow circle spinning.  I finally have to force quite to make it go away.  It does not ask me to choose a template.  This is sporadic, sometimes working, sometimes not.  What is going on?

    Helo,
    Did you try to delete Pages' preferences file(s) in the folder your-user-name/Library/Preferences ?
    There are one or more (depends on your OS X version) file like "com.apple.iWork.Pages.plist"
    You can also repair permissions with Disk Utility in the folder Applications/Utilities.
    Choose the hard drive were Pages is and click the button "Repair permissions".
    Or you can re-install Pages.
    Hope this will help.

  • My Epson photo 1280 will only print 1/2 of a page from a document in Pages program. First print was fine. Have printed out a Mac templet and printer does same thing. Cleaned heads, checked nozzels etc. Any ideas?

    My Epson photo 1280 will only print 1/2 of a page from a document in Pages program. First print was fine. Have printed out a Mac templet and printer does same thing. Cleaned heads, checked nozzels etc. Any ideas?

    Hello, I have exactly the same problem. I could have written the same text. And I have'nt found solutions. Except, perhaps, change this printer (and quit HP?).
    Any suggestions would be really much appreciated.
    Thank you for your possible responses.

  • How to develop and Run .jsp page from Jdeveloper 10g

    Dear All,
    I need to develop one small JSP page using Jdeveloper10g. pls share information How to develop and Run .jsp page from Jdeveloper 10g.
    Thanks in Advance,
    Hanimi.

    Hi Gyan,
    Any Idea how to get DB connection for JSP Pages.
    Our Java guys developed one JSP page for Login page.
    After Log in instead of standard responsibilites page we calling custom jsp page, For getting DB connection they defined one properties file and hard coded DB details on that file and calling, but client is not accepting hard coding.
    Pls give any idea for getting DB connection directly in JSP pages.
    Hanimi.

  • OBIEE 11G - Navigation:How to open in New page/new tab.

    Hi All,
    When I click on a link in report it opens another report on the same page. Instead I have to open the report in a new page/new tab. Is this feature available in obiee 11g version? If yes, could you please tell me how to make it possible?
    Thanks in advance,
    Sunita

    hi
    Use Action Link...to open link in New Window
    1.Go to edit Dashboard...
    2.Select Action Link from Dashboard Objects.
    3.Click the Action Link Properties and Type your Report Name in Link Text Box.
    4.Select New Action Button and Go to Navigate to BI Content
    5.Choose your Report from your path and click ok button
    6.Enable Open Link in New Window(IMP) and click ok.
    7.save and check your dashboard page...
    thanks,
    kavi
    Edited by: Kavitha on Jul 12, 2011 12:11 PM
    Edited by: Kavitha on Jul 12, 2011 12:12 PM

  • OBIEE 11g Recent Reports in a custom dashboard

    Hi,
    I have a requirement to put "Recent Report" of a user in a Custom built Dashboard. I know this functionality is available in OBIEE 11g home page. But our requirement is to put the same sections in few Custom Dashboards. Please let me know if this is possible
    Thanks
    Edited by: user5393876 on Aug 9, 2011 1:51 AM
    Edited by: Rish on Aug 9, 2011 11:08 PM

    Ya i think it is comming due to null data, just restrict the data by specifying not null prompt or specific condition in the associate column Isnull(attribte,0)

  • Passing Chinese characters in OBIEE 11g GO URL to init the dashboard prompt

    Hi Experts,
    Currently we are using OBIEE 11g and passing the dashboard prompt parameter values through the OBIEE go url. When we are passing English strings the dashboard prompt is initialized with the correct passing value. However for Chinese character it is not. I am using the URLEncoder.encode("parameter value", "UTF-8") encoding to encode the passing string.
    Can anyone tell me what is the wrong in this approach? How can we pass any language strings to OBIEE 11g via go url?
    Thanks

    To avoid encoding problems use POST method. Here is js example for OBIEE 10g, but I bellieve you will find similar XML syntax in 11g.
    function getGoXML(P){
         var goXML = '<sawx:expr xmlns:sawx="com.siebel.analytics.web/expression/v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="sawx:logical" op="and">';
         for (var i=0; i<P.length-1; i=i+2){
              goXML = goXML + '<sawx:expr xsi:type="sawx:comparison" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" op="equal">';          
              goXML = goXML + '<sawx:expr xsi:type="sawx:sqlExpression">' + P[i] + '</sawx:expr>';
              goXML = goXML + '<sawx:expr xsi:type="sawx:untypedLiteral">' + P[i+1] + '</sawx:expr>';
              goXML = goXML + '</sawx:expr>';          
         goXML = goXML + '</sawx:expr>';
         return goXML;
    function dashboardPageNav (navParams){     
         var tForm = saw.createForm("customNavForm");
         tForm.action = saw.commandToURL("Dashboard");
         saw.addHiddenInput(tForm, "PortalPath", navParams.portalPath);
         saw.addHiddenInput(tForm, "Page", navParams.portalPage);
         saw.addHiddenInput(tForm, "Action", "Navigate");
         saw.addHiddenInput(tForm, "StateAction", "NewPage");
         saw.addHiddenInput(tForm, "P1", "dashboard");
         saw.addHiddenInput(tForm, "P0", getGoXML(navParams.P));
         tForm.submit();
    dashboardPageNav({
         portalPath: '<portal path>',
         portalPage: '<page name>',
         P: new Array(                         
              '<param1 name>', '<param1 value>',
              '<param2 name>', '<param2 value>',
              '<param3 name>', '<param3 value>',
              '<param4 name>', '<param4 value>'
    });

  • How can I stop my home page from opening OVER a page from a link I just clicked on?

    If I click on a link from an email, Firefox always opens 2 pages with my home page (Google) covering up the page I clicked the link to go to. How can I stop it from doing that?
    == This happened ==
    Every time Firefox opened
    == I think since I got the most recent upgrade (3.6.7)

    There's a good chance this is related to a bug that kicks in when you do not have Flash running in any tab and you open a new window to a page that does use Flash: suddenly, the previous window (typically the one from which you launched the link or bookmark) comes back to the front.
    The details are in this recent thread: [https://support.mozilla.org/questions/955659 Opening New Windows and Shockwave Flash].

  • VARBINARY problems in OBIEE 11g importing data from DB2 AS/400 V6R1

    Hi all,
    I have set up a connection between OBIEE 11g version 11.1.1.6.0 and DB2 AS/400 V6R1.
    It is working fine for most of the data types, but we have the following cast sentence in a view:
    CAST(
    CASE WHEN A.RCATLY IN ( 1250 , 1000 ) THEN F.DESCRIPTION3 ELSE
    CASE WHEN A.RCATLY=12 THEN 'AUM' ELSE
    CASE WHEN F.KEYASL3='AL_EXCLUDED' THEN 'Other open items' ELSE
    'AUM' END END END AS CHAR(50)) AS POS_CAT,
    CAST(CASE WHEN F.DESCRIPTION3 IS NULL THEN 'Securities' ELSE F.DESCRIPTION3
    END AS CHAR(50)) AS POS_DESCR
    We are importing this view into OBIEE 11.1.1.6, the fileds POS_CAT and POS_DESCR are coming as BINARY, we also have tried to cast them to VARCHAR, they come as VARBINARY instead.
    When we try to see the fields in a report we are getting the error below:
    Error Codes: OAMP2OPY:Q4NU7XSN
    Invalid Handle Of 'const saw::ExpressionBase*' Exception
    I have tried to cast this fileds to VARCHAR in administration, no luck, error below:
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 46035] Datatype(VARBINARY) nullable(1) unicode(1) external char(0) conversion to datatype(VARCHAR) nullable(1) unicode(0) external char(0) is not supported. (HY000)
    SQL Issued: SELECT 0 s_0, "MI"."DWSPAIN01"."POS_CAT" s_1 FROM "MI" FETCH FIRST 65001 ROWS ONLY
    Any suggestion?
    Edited by: Ruben Alonso Ortega on 04-Mar-2013 07:23

    Thanks for your quick response, I have tried to change it in the phisycal layer, to CHAR, VARCHAR, same error, it didn't work.

  • Opening an ADF page from an OA framework page

    Hello,
    We have an OA framework page (a custom app) deployed in Oracle 9i Application server. We intend to develop some ADF pages which will be deployed in a separate Oracle 10g AS. I would like to know if it is possible to open an ADF page from an OA page and the basic interoperability between them. If someone can throw some light on the feasibility of this approach, it would really be helpful. Are there any material available on this?
    Please let me know your thoughts on this. Thanks in advance
    Raja

    You way want to ask this on the OA Forum as well.
    Because you are running the apps on different servers the interoperability can only be through the db layer. I'm not aware of a solution where the apps are running in the same context, meaning you can't have an transaction spanning both apps.
    To open a page of an other app is simply done by putting a link in one app which points to the second app.
    Timo

  • Calling oAf page from Other non OAf pages

    Hi the requirement is to call a specific OAF page from email notification.But when the page is accessed from application few paramters are appended to the page url like &ti,&mi,&oas etc and the value of these parameters keep on changing as and when a new session is opened.
    Thanks

    Hi Sumit ,
    I have requirement where i need to send a notifications to an user with link with parameter like task num and other params when user click on this link it need to open an Custom page based on this parameters. we are generating url link from one database function for the page function such that it generates url for that and user clicks on that it opens the corresponding page but this uis happening when we r not using parameters but we want with parameters.
    Plz reply ASAP.
    Thanks.

  • My macbook pro started acting strange after a safari reset. the mouse no longer: animates the dock, activates hot corners or selects pages from the 'top sites' page.

    my macbook pro started acting strange after a safari reset.
    the mouse no longer: animates the dock, activates hot corners or selects pages from safari 'top sites' (without a hassle). attempts to reset dock and hot corners from preferences has been fruitless
    the mouse also gets 'stuck' in logic precipitating force quits.
    i run osX 10.6.8 on a 2007 macbook pro that has had 2 motherboards replaced autumn 2010.
    my troubleshooting has been: restart, pRam and safe boot, also checking a 'test' account to find the same issues extant.
    pRam restart caused airport to quit and say there is no airport card, and wouldn't respond untill another reboot.
    macbook pro 15" 2.4 GHz intel core duo.2 GB 667 MHz DDR2 SDRAM.
    i have treated this book with care, yet run logic pro studio to the limit of this book's abilities.
    what shoud i do?

    You don't say which year you have, however...
    ...there are known problems with the mid-2010 models (see http://support.apple.com/kb/TS4088?viewlocale=en_US&locale=en_US) as well as early and late 15" 2011 models (see https://discussions.apple.com/thread/4766577?tstart=0).
    Apple has taken ownership of the problems with the 2010 model but, unfortunately, the free logic board replacement for that model has probably long expired for you - three years after date of purchase.
    One the 2011 models Apple has admitted no defect. You'll just have to skim the articles to get an overview of the problems that people are having (usually showing up as screen glitches at first and then going downhill from there).
    Good luck,
    Clinton

  • When attempting to go to my Cox Web Mail account I receive at the top of the page. "Firefox is preventing this page from redirecting to other page, so I have to click on the top right ALLOW for it to redirect to my Cox Webmail sign in page. Why?

    When using my Cox e-mail shortcut to go to the sign in page why does Firefox prevent the current page from redirecting to the Cox web mail sign in page?
    What settings do I change so I don't have to go to the top right of the page and click on ALLOW?

    @Steve_Clairman, if you are looking for the orange Firefox button (abbreviated menus), it will appear if you turn off the classic menu bar:
    View menu > Toolbars > ''uncheck'' Menu Bar

  • Drag and Drop of Page from Content Finder into Page Component

    Hi,
    Does anybody has a sample code for Page component which accepts the page when dragging and dropping from the content finder? Basically I am trying to create a web page with page component on it and customized the content finder to display all the pages that I needed on a separate tab, I am trying to drag and drop the pages from the content finder to the page component of the web page that I created, but it is not working for me. If someone has any sample working code please share it.
    Thanks

    Hi,
    There's no direct support for this. But you could implement
    drag and drop the way you normally would in javascript. Except
    here, on mouseUp over a div encapsulating the object or embed tag
    (the flash object), you'll need to make a call into actionscript
    from javascript indicating that a drag and drop happened.
    For more info, see
    how
    to drag and drop using javascript and
    actionscript
    and javascript communication

Maybe you are looking for

  • After Tiger to Leopard conversion shared user folders stopped working

    Hi, Today i updated our mailserver to leopard. This server is also the OD master. Directly updated to 10.5.1 to have the latest bugfixes. Most things seem to work ok, but somehow our shared folders are not visible anymore. Checked the rights on them

  • Problem in Delta Extraction

    Hi Firends, I created a DS out of a  Function module. The source table is a Z table with following data MANDT MATNR                WERKS  STLNR    ANDAT      AEDAT      AENAM        VALUE 100   000000000000000184   1500   00001500 18.08.2006 15.08.20

  • Regarding EP Guys in the XI Project

    Hi Experts, i have One Doubt Regarding the Implementation of the XI Project. Is the EP Persons are  Must To Implement Any XI Project?????? Should we Maintain the EP Front End Access Compulsary Or We can Maintain Any other Fron End Access Like VB .NET

  • Convert military hours time to civilian time

    Fellows: How do I convert the military hours to civilian time (hours 1 through 12 followed by either "a.m." and "p.m."). . Thanks /* The following program will print hours in military time */ import java.util.Date; public class Hours public static vo

  • TS3988 my emails keep vanishing on my mac..anyone got a solution

    since i moved to icloud my emails on my computer keep vanishing..anyone got a solution?