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

Similar Messages

  • How to open a JSP page from a form ??? plz help

    hi ..
    i want to know how to open a jsp page from a oracle apps form using a button .
    the requirement is that whenever we click on the button created on the form, it opens a jsp page.
    plz help me ..its urgent !! :-(

    In portlet project, to navigate between pages, you should not use the URL property to link to a page. Instead, portlets use navigation via action handling. You use the Page Navigation editor to set up links to pages; that is, the navigation editor sets the action property.
    Here is an example to hyperlink ans button to open a new page:
    # From within the IDE, create a new portlet project. This action creates the project and one page, PortletPage1.jsp.
    # Create a second portlet page, called PortletPage2.jsp, for the project.
    # Drop a Hyperlink component onto the first portlet page, PortletPage1. (You can drop the Hyperlink on the page in the Design window or on the PortletPage1 node in the Outline window.) Change the Hyperlink's text property to Next Page.
    # Drop a Button component (found in the Basic section of the Palette) onto the second portlet page, PortletPage2.
    # Open the Page Navigation Editor. It displays the two pages (PortletPage1.jsp and PortletPage2.jsp) of the application.
    # Click the PortletPage1.jsp icon in the Navigation window to expand it, and then drag a connector from hyperlink1 to PortletPage2.jsp. Change the name of the connector from case1 to Page2.
    # Click the PortletPage2.jsp icon in the Navigation window to expand it, and then drag a connector from button1 to PortletPage1.jsp. Change the name of the connector from case1 to Page1.
    # Run and deploy the portlet. The browser displays PortletPage1 and you should see the Next Page hyperlink. When you click the Next Page hyperlink, the Apache Pluto Portal server displays PortletPage2. Click the Page2 button to return to PortletPage1.
    Sherry
    Creator Team

  • How to open a web page in JFrame.

    Please let me know how to open a web page in the Java Frame.

    HTML code can be viewed in any Swing component you want.

  • How to open all the pages of a file PDF in Photoshop?

    Hi,
    How to open all the pages of a file PDF in Photoshop?
    Or
    I need to know the amount of Pages in PDF.
    Example:
    >Set MyPhotoshop = CreateObject("Photoshop.PDFOpenOptions")
    Set MyOpenPref = CreateObject("Photoshop.PDFOpenOptions")
    sFileName = "C:\Temp\Myfile.pdf"
    >With MyOpenPref
    .AntiAlias = True
    .Mode = psOpenCMYK
    .Resolution = 72
    .BitsPerChannel = psDocument8Bits
    .CropPage = psBoundingBox
    .Page = 4
    .SuppressWarnings = True
    End With
    >MyPhotoshop.Open sFileName, MyOpenPref
    I need help.
    Thanks

    http://www.ps-scripts.com/bb/viewtopic.php?t=1882
    Have a look at this thread, the last entry has the full code and has everything you need there.
    The answer to knowing how many pages is, you don't need to know!
    You use SL code and no error and no page is opened. Thats the crux of the code.

  • OBIEE 11g - Navigation from Hierarchy Column

    Hi Experts,
    I have created one Organization Hierarchy (Country --> Region --> State --> City) in the Logical Layer of the rpd and pull that hierarchy with the dimension in the Presentation Layer. In the new analysis I have created dashboard prompt with the Organization hierarchy and created a report showing Total Headcount column and Organization Hierarchy column (using selection steps feature in OBIEE 11g).
    Now when I select Region from the dashboard prompt, in the report it is showing me total headcount according to my region selected in the prompt, but when I tried to navigate from the Total Headcount to see the list of employees in that particular region, I am not able to see the list of employees belonging that particular region rather it is showing me the list of total employees at the Country level.
    PS - In the navigation report I am prompting Country, Region, State and City from the Organization dimension, but I am not able to prompt Country, Region, State and City from the hierarchy column which is there in the Organization dimension.
    Please Help.

    Hi,
    You need to create the drill down report also using selection steps. I tried the drill down was working fine.
    Thanks

  • How to open my Ireport in new browser tab window

    hi
    I'm using Jdev v 11.1.2.3.0
    Isucced in conneting and calling (ireport) generated report from my adf application in pdf file format
    All what I want to do now is to call or open the report in browser tab window
    I can call it in the same tab window
    using this line code
    response.setHeader("Cache-Control", "max-age=0");
    or
    make attachment download
    using this line code
    response.setHeader("Content-Disposition", "attachment; filename=\"report.pdf\"");
    please help me in this last setp
    here is my code to call ireport
    after adding nessesary jar files and Datasource in wedlojic
    maybe it help others
    ============
    import java.io.ByteArrayOutputStream;
    import java.io.InputStream;
    import java.sql.Connection;
    import java.util.HashMap;
    import java.util.Map;
    import javax.faces.context.FacesContext;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.servlet.ServletContext;
    import javax.servlet.ServletOutputStream;
    import javax.servlet.http.HttpServletResponse;
    import javax.sql.DataSource;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.engine.type.WhenNoDataTypeEnum;
    import net.sf.jasperreports.engine.util.JRLoader;
    import oracle.adf.model.BindingContext;
    import oracle.adf.view.rich.component.rich.input.RichInputText;
    import oracle.binding.BindingContainer;
    //import oracle.adf.model.binding.DCIteratorBinding;
    public class mainNew {
    private RichInputText copyFrom;
    private RichInputText copyTo;
    public mainNew() {
    public void setCopyFrom(RichInputText copyFrom) {
    this.copyFrom = copyFrom;
    public RichInputText getCopyFrom() {
    return copyFrom;
    public void setCopyTo(RichInputText copyTo) {
    this.copyTo = copyTo;
    public RichInputText getCopyTo() {
    return copyTo;
    public String cb3_action() {
    String s =(String)copyFrom.getValue();
    String d =(String)copyTo.getValue();
    // copyTo.setValue(s);
    // DCIteratorBinding empIter = (DCIteratorBinding) getBindings().get("Employees1Iterator");
    // String empId = empIter.getCurrentRow().getAttribute("DepartmentId").toString();
    Map m = new HashMap();
    System.out.println(s) ;
    System.out.println(d) ;
    // m.put("eployeeId", copyFrom.getValue() );
    if (s!=null) {
    m.put("whr", "Where department_id ="+s); }
    if (d!=null) {
    m.put("whr", "Where employee_id= "+d);}
    if (s != null & d==null)
    { m.put("whr", "Where department_id ="+s);
    if (s==null & d!=null) {
    m.put("whr", "Where employee_id= "+d);}
    if (s!=null & d!=null) {
    m.put("whr", "Where department_id ="+s +" and employee_id="+d);}
    if (s==null & d==null) {
    m.put("whr", "Where 1=2");}
    try
    // runReport("empRep2.jasper", m);
    runReport("empsDyn.jasper", m);
    catch (Exception e)
    return null;
    public BindingContainer getBindings()
    return BindingContext.getCurrent().getCurrentBindingsEntry();
    public Connection getDataSourceConnection(String dataSourceName)
    throws Exception
    Context ctx = new InitialContext();
    DataSource ds = (DataSource)ctx.lookup(dataSourceName);
    return ds.getConnection();
    private Connection getConnection() throws Exception
    return getDataSourceConnection("hrDS");
    public ServletContext getContext()
    return (ServletContext)getFacesContext().getExternalContext().getContext();
    public HttpServletResponse getResponse()
    return (HttpServletResponse)getFacesContext().getExternalContext().getResponse();
    public static FacesContext getFacesContext()
    return FacesContext.getCurrentInstance();
    public void runReport(String repPath, java.util.Map param) throws Exception
    Connection conn = null;
    try
    HttpServletResponse response = getResponse();
    ServletOutputStream out = response.getOutputStream();
    /// response.setHeader("Cache-Control", "max-age=0"); // opens in same page
    response.setHeader("Content-Disposition", "attachment; filename=\"report.pdf\""); // genreat adownload file
    // response.setHeader("Content-Disposition", "inline; filename=\"" + "Report.pdf\"");//opens in same page
    response.setContentType("application/pdf");
    ServletContext context = getContext();
    InputStream fs = context.getResourceAsStream("/reports/" + repPath);
    JasperReport template = (JasperReport) JRLoader.loadObject(fs);
    template.setWhenNoDataType(WhenNoDataTypeEnum.ALL_SECTIONS_NO_DETAIL);
    conn = getConnection();
    JasperPrint print = JasperFillManager.fillReport(template, param, conn);
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    JasperExportManager.exportReportToPdfStream(print, baos);
    out.write(baos.toByteArray());
    out.flush();
    out.close();
    FacesContext.getCurrentInstance().responseComplete();
    catch (Exception jex)
    jex.printStackTrace();
    finally
    close(conn);
    public void close(Connection con)
    if (con != null)
    try
    con.close();
    catch (Exception e)
    }

    One solution would be to generate the report via an servlet which you then call with an af:golink with an target frame set to blank.
    For a sample how to do this check out http://tompeez.wordpress.com/2011/12/16/jdev11-1-2-1-0-handling-imagesfiles-in-adf-part-3/
    Timo

  • How to open a url in new page/tab from Answers passing a value to the url in OBIEE10g

    Hello All,
    I'm trying to create an answer, A column "request id" would have a url with request id attached to end of url to open a web page. I did get the answer working, I need to open the webpage in a new page rather than in the same obiee answer. We are on OBIEE10g(10.1.2.3) on Windows 2003 R2.
    Can anyone give me some information to achieve this ?
    Thanks,
    Vijay

    Hello Srini, Vinod,
    I guess there might some set-up issue here. Here is my link
    <a href="https://ifa.dev.com/inspectionformsweb/formviewer.aspx?formid=273221" target=_new>273221</a>
    If I give the above link I would get syntax error.
    Then I change to add single quotes on the above link
    '<a href="https://ifa.dev.com/inspectionformsweb/formviewer.aspx?formid=273221" target=_new>273221</a>'
    Output looks like
    273221"><a href="https://ifa.dev.com/inspectionformsweb/formviewer.aspx?formid=273221" target=_new>273221</a>
    On the number when I click it does not go to the link rather gives me a HTTP 404 not found
    http://scaobieedev:9704/analytics/%3Ca%20href=
    Please advice.
    Thanks,
    Vijay

  • How to open newweb address in new tab

    when we are opening the firefox new tab is displaying but when we are trying to type web address in that it is not taking the wed address.where we have to type web address? how to open the new website?

    I have that option checked and use that function all the time. I'm wanting my search from the search bar to open in a new tab, not the existing page. Command - click only works if you click on a link within a page.
    Thanks for replying.

  • Obiee 11g graph how to increase bar width

    Hello,
    obiee 11g: -> bar graph: how to increase bar width ?
    Thank you,
    Ark

    Hi ,
    Create your own bar code type rather than using system Bar Codes , if the length of your code doesn't fit with the standards available under  SE73 . There you can define your own sizes as per your requirement , If you have a stands logic ,for example production order type Z001 should be in 15 lengthy code , then put a condition in the smart form to facilitate it , like wise you could use different lengthy bar codes in single form .
    I hope this is what you meant by your treat.
    Good Luck .
    Cheers ,
    Dilum

  • How to open "Dispform.aspx" in new window or tab in SharePoint List item click.

    Hi,
    I have a SharePoint list.It has column name "Description" which is "Multiple lines of Text" and "<label for="onetidAppendOnly">Append Changes to Existing Text" is Yes.</label>
    Now the view showing the Description <label for="onetidAppendOnly"></label>column value as a "View Entries...". while click the view entries. It showing the records in same window. But
    instead of that i want to open the record in New tab / New window as Popup.
    Is it possible?
    Thanks & Regards
    Poomani Sankaran

    Hi,
    The view itself is a Web Part called an XSLT List View Web Part (XLV for short). This Web Part is stored on an ASPX page that is by default associated with a list or library on your site.
    I suggest you can check if the view page is valid, also, you can try to create another view, then redirect to the view page to see if there is xslt in the page.
    Here are some detailed articels for your reference:
    Create a custom list view using SharePoint Designer
    Using SharePoint Designer 2010 to Work with Web Parts
    How to: Customize the Rendering of a Field on a List View
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • How to open external links in new tabs?

    I own a personal web site. A question is
    How to open external site in the new tab? For example: the THIS LINK will open new window. How to open new tab in Safari for this case?
    Thanks for answer.

    Morning Igor and welcome to the forum.
    I assume that you are talking about enabling the tabs in the preferences of safari:
    Preferences, tabs, open new windows in tabs (I believe this is how it is written.. not in front of my mac).
    Hope this helps...
    Steff

  • How to open Bing in a new tab?

    I know that most people are looking for the way how to remove Bing from a new tab, but I want to make a vise versa :) I have already found the way how to set up Firefox to open Bing in a new tab. But what I miss - is the position of the cursor. It stays on URL bar. But I would like it to stay in searching bar of the Bing. Is it possible to make it?
    Thanks!

    Hello there,
    You'll need to make "bing" your default search engine. http://www.bing.com/set/search
    Hope this helps!

  • How To open a PDF in New Native Window in Air

    Hi All,
    I have a Air application.I want to open an pdf located in desktop in new native window.
    Thanks,
    Amol.

    There is no easy way to implement this. Its better to instruct users the shortcut to open the link in new window.
    --Cheers

  • How to open sites in a new page instead of a tab?

    I want to open sites in a new page instead of a tab!

    I've seen that before, and unselected the first item, but it didn't help at all!
    It still opens new tabs instead of a new window.

  • OBIEE 11g Analysis : Change Report edit link to go Criteria tab instead

    How to change the setting to have the "Edit" to go to criteria tab instead of Results (Compond view)?
    Many time we may need to change the filter from default setting and then run the report or if the filter is setup to be used from a dashboard (using "Prompted") option...then the report attmpts to run the report without values...
    And I have not checked to see if the server cancels the query to the database when the user navigates to the Critetia Page as there is no cancel link...(as it displayed in 10g...)
    FYI, We have just started using OBIEE 11g in a dev environment, we are in the process of configuring the new env to get ready for prod...
    Thanks
    Sundar

    Hi,
    By default, the Action request is sent to results tab. You can modify it by editing the dashboardeditor.js file found in /app/res/b_mozilla/dashboards folder.
    Steps:
    1) Open dashboardeditor.js file.
    2) Search for the function "DUIModifyReport".
    3) Inside the function you will find that ***"&Action=results&Path="****
    4) Change results to criteria. In other words, the changed code will look like
    ****"&Action=criteria&Path="*****
    5) Re-deploy the code and bounce the services.
    -- Remember, this will affect for entire dashboard, and for all users. ---
    If you want to avoid step (5), then manually copy the changed dashboardeditor.js to /user_projects/domains/BIfoundation/servers/bi_server1/tmp/_WL_user/analytics_11.1.1/$RANDOMFOLDERNAME$/war/res/b_mozilla/dashboards and bounce the services.
    Voila - now when you edit the analysis through dashboard, it will take you to the criteria tab, instead of results tab.
    Please award points, if it helps.
    Regards,
    Bharath

Maybe you are looking for

  • Nokia C2-03 Update

    I can't update my firmware of N C2-03 in Pakistan how do i update it i have v 06.51 how do i update it with latest software Moderator's note: We provided a topic-related subject as the post was moved to the appropriate folder.

  • Harddrive Upgrade - Please Help needs to be done ASAP

    I have the MC375LL/A 13.3/2.66/4GB/320 Macbook Pro which I purchased November 2010.  The hard drive only has about 30gb of space left because I have lots of photos, movies & music.  I am looking to upgrade my hard drive to a WD Scorpio 1 TB Internal

  • I can't install any software

    i receive an error message with every software that i install, even my phone update. these are sis apps, so i thought they would install. any knowledge on this is welcome. thanks

  • Unable to see photos

    When I enter Time machine, I can see and watch videos that are saved on time machine. However, when I open up photos, it will not let me view the photos. It just says how many gigs are saved and the current version of iphoto. I don't necessarily want

  • Windows XP Error

    I keep getting the same error everytime I try to start iTunes..."iTunes has encountered a problem and needs to close. We are sorry for the inconvenience" I had no problems prior to the other day. I uninstalled iTunes and reloaded it again but am stil