Report on a new window

Hi All,
I have a calendar and a report on the same page:101. But I want to open a report on a new window whenever a user clicks on the event. I can not move the report on the different page because it is before login and public.
Please let me know.
Thanks.

If you're wanting to just dump some data to a new window/popup, in the "Column Link" section:
+ Select "URL" for the Target field.
+ Enter the following in the URL field:
javascript:var newwin=document.open('','_errmsg','width=500,height=500'); newwin.document.write('#ERROR_MSG#')
...where ERROR_MSG (for this scenario) is one of the columns/attributes on the page.

Similar Messages

  • Open an on demand sub report in a new window

    Hi There!
    While reading the forum threads, there is an thread that have the same issue that i want to find out, but the thread is not yet answered. Could you guys help me. Thanks!
    Thread by: Kylie Edwards  
    Hi I am wondering if it is possible to open an on demand sub report in a new window.
    I have a report that has 6 level drill and I want to be able to close the information in the sub report to give the end user the ability to keep drilling.
    I have tried inserting a text box with a hyper link back to the main report but hyper links do not seem to work the subreport. "
    Thanks and Regards,
    Joni

    Hi all,
    Sorry for the late reply, and thank you guys for the helped. I manage to solve the problem myself
    To Falk:
    Ya you are right, for what i know,  Inforview is not possible to open a subreport from a RPT file in a new windows as well.
    To Wallie Cheng :
    When i posted the question for help, i just want to know if i could display a crystal report on a new window.
    My situation is that i have a page that is size 3in x 3in ( Just a small static graph ) and i wanna attached a A4 report. In order to have a nicer view at inforview ( 3in x 3in border box ), i will need to reduced the size of the crystal report. The size of the main report is now properly change, but it affects the view for the sub report ( As subreport is A4 size, the system display the A4 size document in a serveral 3in x 3in page. -_-"' ).
    To Abhishek:
    I wanna try out your solution, but i can't find the hyperlink tab in perference option ( in inforview ).
    I manage to solved my problem (suitation that i have explain to Wallie Cheng ). That is to created a hyperlink to the report. Rather than a subreport link.
    Thanks and Regards,
    Joni

  • How to automatically startup a report in a new window after committing a form

    I have a form on a portal-page. The user enters values in the form and presses the INSERT button.
    After doing so, I want to show a report in a NEW window querying some values the user entered in the form.
    I was hoping to be able to use the After Processing Form PLSQL-section as follows:
    declare
    l_id integer;
    l_url varchar2(2000);
    begin
    l_id := p_session.get_value_as_NUMBER(
    p_block_name => 'DEFAULT',
    p_attribute_name => 'A_ID');
    l_url := 'APP_OWNER.MY_REPORT.show?'
    | | 'p_arg_names=id&p_arg_values='
    | | to_char(l_id);
    htp.p('<a href="' &#0124; &#0124; l_url &#0124; &#0124;' target="_blank"></a>');
    end;
    But I see only "Inserted one record" and no report is started.
    I've tried to use the after-form-processing part, but it seems I can only startup reports in the same window with GO and CALL.
    Also the ID-variable can not be read from that part.
    A second solution I tried was to put this PLSQL in the PLSQL-handler-section of the button, but for some reason all double quotes " are automatically changed into single quotes ' causing several Java-script errors. Perhaps a bug?
    Does anyone have a solution for this functionality?
    Thanks,
    Jan Willem Vermeer

    Hi,
    There are 2 scenarios I can think of:
    1. The value of ORD_ID is not known until the insert processing completed.
    2. The value of ORD_ID is known and can be retrieved without a roundtrip to the server.
    The 2nd scenario is being simpliest and could be done from Javascript w/out any server involvement, all you need is the getField() function (or any other function to get the field value) described here : http://technet.oracle.com:89/ubb/Forum81/HTML/000073.html
    Javascript piece goes something like this:
    myWindow = window.open("http://myhost/portal30/pos.APPROVAL_INVOICE_DYN.show?p_arg_names=ord_id&p_arg_values=" + getField(this.form,"ORD_ID"),
    "myWindowName","toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,height=400,width=600");
    The first scenario is more complicated.
    During the "accept cycle", when your PLSQL insert/update etc. event handlers are
    fired all the processing output will happen into the current window.
    Neither owa_util.redirect_url() nor wwa_app_module.set_target() will help.
    Both of them will do a redirect only in the current browser window,
    actually, wwa_app_module.set_target() internally calls owa_util.redirect_url().
    What you need is:
    1. Get the field value, and either: 1. store it somewhere in a package variable,
    or: 2. do this all at once in "before displaying the page"
    2. After the form processing is completed (but not in the onSuccess!!! code),
    open a new browser window w/Javascript specifying the same url you were passing to
    set_target().
    Here is my example, place following code into "before displaying the page" additional PLSQL block:
    declare
    l_id integer;
    begin
    l_id := p_session.get_value_as_NUMBER(
    p_block_name => 'DEFAULT',
    p_attribute_name => 'A_ORD_ID');
    if l_id is not null then
    htp.p('{SCRIPT} var myWindow = window.open("http://myhost/portal30/pos.APPROVAL_INVOICE_DYN.show?p_arg_names=ord_id&p_arg_values=' &#0124; &#0124; l_id &#0124; &#0124; '",
    "mySubWindow","toolbar=yes,location=yes,directories=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes,height=400,width=600");
    myWindow.focus();
    {SCRIPT}');
    end if;
    end;
    To do: you will need to add more logic to decide when to open a new window,
    whatever is appropriate for your application,
    rather than just 'is null' check I did.
    Hope this will help.
    Thanks,
    Dmitry

  • How can I open a customized report in a new window?

    I am trying to create printable views for my reports that are published as portlets. In specific, I would like a link to open the report up in a new window where the user can print at. I have figured out how to do this with the default report created. However, after a user has customized the report, is there a way to open the customized report in a new window?

    Hi
    I do not think it matters whether your reports portlet is a default one or a customize one. I think whne you place the portlet, you can specify in the property to open up the result in new window. I think it is common feature of Portal.
    Thanks
    Rohit

  • Checkbox and report page in new window

    Hi team,
    I have the following problem.
    On a page I display a report where each row has a checkbox.
    The user can check a row and press a button (button in region)to produce a more detailed report. I want to display this report in a new window. I know that I can use the javascript PopUpURL or PopUp2. The issue I have is that I have to process the checkbox with function htmldb_application.g_f01(i). I can't use that directly. So what I have done is create a hidden field and assign the return value of the formentioned function to it in a Page processing computation. The problem I hit is that page processing is/has not taken place. Therefor the call to the new page is missing a paramater because the hidden field is empty.

    Hi Raymond,
    1. Create a URL redirect branch back to the same page when the VIEW button is pressed
    "f?p=&APP_ID.:&APP_PAGE_ID.:&SESSION.:&REQUEST.:&DEBUG.:"
    2. Create an Hidden Item P1_HIDDEN_ITEM
    3. Create an after submit computation to null the hidden value item
    4. Create an after submit computation to find out which check box is checked.
    Dynamically generate the popup URL you would like to view into the Hidden Item.
    P1_HIDDEN_ITEM
    3. Create a JavaScript function called showpopup in the page HTML Header region
    &lt;script&gt;
    function showpopup () {
    if ("&REQUEST." == "VIEW")
    if ("&P1_HIDDEN_ITEM." != null)
    popupURL('&P1_HIDDEN_ITEM.');
    &lt;/script&gt;
    4. Call the showpopup function in on load JavaScript region. onLoad="showpopup();"
    Try this and see if it works for you.
    Also I would have changed the Checkbox to a Radio button group because this will limit the user to select only one row.
    Vivek Ananda

  • SSRS 2008 : Open a linked report in a new window.

    Hi,
    How can I open a linked report, specified in the Action property, in a new explorer window?
    Thanks,
    Anurag

    Hi Anurag,
    If I understand correctly, you have used the "Jump to report" function to open a sub reoprt(linked report in your question). Now, you want to open the report in a new windows.
    By default, if using "Jump to report" function, the sub report will be opened in itself. That menas, it won't be opened in a new window.
    To open the sub report in a new windows, we can use the "Jump to url". Use JavaScript function "window.open" in the URL to open the reoprt in a new window:
    ="javascript:void(window.open('subreport name'))"
    Please feel free to ask, if you have any more questions.
    Thanks,
    Jin ChenJin Chen - MSFT

  • Report dispplayed in new window when called from other report

    I have 2 reports based on data in a database, say rep1 and rep2.
    Rep2 is called by rep1 using this in de SQL-wizard:
    SELECT
    '<A HREF="SCHEMA_OWNER.REP2.show?p_arg_names=server_dom&p_arg_values='||COLUM||'&p_arg_names=db_key&p_arg_values='||COLUM||'">Report2</A>' "link to rep2"
    FROM table...
    I have made a portlet with the first report. When I click on the Report2-link, a new window is opened. How can I obtain that the report2 is displyed in the same portlet of the Portal?

    Please post this question to the Portal Applications forum.
    Thanks,
    Jerry

  • Opening a report in a new window on the web

    Hi I am displaying crystal reports using Tomcat and I am trying to get the hyperlink>&#39;A website on the internet&#39; to open up in a new window. At the moment it just opens up in the current window. This seems like it should be something very easy.

    This is my link in a web page.
    http://the web server name/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?iDocID=okcwr4UADs7mAVYAMw6D5nGBEQY&sIDType=CUID&sType=rpt&sReportName=TEST_Requisition&sRefresh=Y
    But on click this link throws the below error.
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: SSO Script: Header employeeid does not have a value associated with it. It is null, which probably means no such HTTP header exists
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:825)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:758)
         org.apache.jsp.InfoView.logon.logon_jsp._jspService(logon_jsp.java:244)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         com.crystaldecisions.ePortfolio.framework.common.AutoWrapExceptionAction.process(AutoWrapExceptionAction.java:83)
         com.crystaldecisions.webapp.struts.framework.AbstractEnterpriseAction.perform(AbstractEnterpriseAction.java:38)
         org.apache.struts.action.ActionServlet.processActionPerform(ActionServlet.java:1787)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1586)
         com.crystaldecisions.webapp.struts.framework.CrystalUTF8InputActionServlet.process(CrystalUTF8InputActionServlet.java:29)
         org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:510)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.lang.Exception: SSO Script: Header employeeid does not have a value associated with it. It is null, which probably means no such HTTP header exists
         org.apache.jsp.InfoView.logon.logon_jsp._jspService(logon_jsp.java:143)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         com.crystaldecisions.ePortfolio.framework.common.AutoWrapExceptionAction.process(AutoWrapExceptionAction.java:83)
         com.crystaldecisions.webapp.struts.framework.AbstractEnterpriseAction.perform(AbstractEnterpriseAction.java:38)
         org.apache.struts.action.ActionServlet.processActionPerform(ActionServlet.java:1787)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1586)
         com.crystaldecisions.webapp.struts.framework.CrystalUTF8InputActionServlet.process(CrystalUTF8InputActionServlet.java:29)
         org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:510)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.0.27 logs.

  • Show BLOB (open a pdf) from Report in a new window

    I use BLOB Support in Apex 3.2/4.0 (MIMETYPE..) at an IR:
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/advnc.htm#sthref2199
    Because my BLOB (pdf,...) should be opened without asking for download or open I use content_position INLINE.
    That works fine, but I would like to get the opened document in a NEW window , not the same window ??
    ( If I klick the download with "open in a new window" it works fine)
    Any idea?
    I remembered Link-Attribute target="_blank" (that works fine)
    So my first idea was
    (1) defining the BLOB column as a Link (type=URL) call APEX_UTIL.GET_BLOB_FILE_SRC and use Link-Attribute target="_blank".
    But APEX_UTIL.GET_BLOB_FILE_SRC needs an ITEM ... and what about MIMETYPE...
    =>It will not work.
    My second idea is
    (2) Link from the report to another page having a hidden Item for the linked ID and
    create an hidden ITEM (having the BLOB attributes) like described at Dimitrie's BLOG
    http://dgielis.blogspot.com/2009/05/using-apexutilgetblobfilesrc-on-public.html
    At this page a process on load before header call APEX_UTIL.GET_BLOB_FILE_SRC with these items as parameters
    => Seems to complicated
    Any better idea?

    Hi,
    You know I have to thank you for the solution as by asking your question you provided me with a way to solve my problem .....
    As double clicking a pdf file when the application is open with no open document works as I want it to (i.e. showing the new document in the existing acrobat window), so I decided to try out a plain vanilla shell instruction in vba instead of the AVDOC.Open statement ... and ....although not very programmatically aesthetic ....  it works.
    rgds

  • Calling a report from a report in a new window?

    I have a report that has a link to another report that opens in a new window. This works great when I run the report from the applications tab in the navigator. I then added it to a page as a portlet. I ran the page and tried the link, but I get a page not found error. Here is the code I'm using.
    ''||c.client||'<BR>'
    client_link,
    Any ideas would be great.
    Thanks,
    Tom

    This is basically a BASE HREF problem.
    In full page mode, your base HREF woule be point to something like package.procedure.show
    But in the portlet mode, the BASE HREF would be set to the current page.

  • Opening URL for report in a new window

    I have a report with URLs to other reports, and also to dialogs in Dynamics CRM. The URLs all work perfectly, however, I want to open the reports the URLs point to (and the CRM dialogs) in a new window. I tried adding &rc:LinkTarget=_blank to the
    end of the URL, but that causes an Invalid Parameter error:
    >System.InvalidOperationException: Microsoft Dynamics CRM has experienced an error. Reference number for administrators or support: #969F3622: System.InvalidOperationException: CRM Parameter Filter - Invalid parameter 'rc:LinkTarget=_blank' in Request.QueryString
    on page /Company/cs/dialog/rundialog.aspx
    >The raw request was 'GET /Company/cs/dialog/rundialog.aspx?DialogId=%7bc4918a58-6faa-4915-8620-1ebfb1980263%7d&EntityName=phonecall&ObjectId=%7bC51D5ECC-DF43-E411-BC10-00155D3FE201%7d&rc:LinkTarget=_blank' called from
    http://vulcanbasevm/Reports/Reserved.ReportViewerWebControl.axd?ReportSession=bzys1s55lpwiai55sny1borg&ControlID=e5c10494dc3048b199babe9e2aabd82a&Culture=6153&UICulture=9&ReportStack=1&OpType=ReportArea&Controller=ctl143&PageNumber=1&ZoomMode=Percent&ZoomPct=100&ReloadDocMap=true&SearchStartPage=0&PageCountMode=Estimate&LinkTarget=_top.
    >   at Microsoft.Crm.Application.ParameterFilter.ValidateParameter(HttpRequest request, ArrayList parameterCollection, String key, String value, ParameterSources source, EntityType pageEntityType, FormAdditionalAllowedParameters additionalAllowedParameters)
    >   at Microsoft.Crm.Application.ParameterFilter.ValidateParameters(Page page, EntityType pageEntityType, Boolean alwaysEnableParameterChecking, FormAdditionalAllowedParameters formAdditionalAllowedParametersTemp)
    >   at Microsoft.Crm.Application.ParameterFilter.ValidateParameters(Page page, EntityType pageEntityType, FormAdditionalAllowedParameters formAdditionalAllowedParametersTemp)
    >   at Microsoft.Crm.Application.Controls.AppPage.ValidatePageParameters()
    >   at Microsoft.Crm.Application.Controls.AppPage.OnInit(EventArgs e)
    >   at System.Web.UI.Control.InitRecursive(Control namingContainer)
    >   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

    Hi ,
    You can try with below ;
    ="javascript:void(window.open('http://www.google.ca','_blank'))"
    I use google url you can type your URL.
    you can take help from below link;
    http://www.bidn.com/blogs/BrianKnight/ssis/972/ssrs-action-to-open-a-url-in-a-new-window
    Thanks
    Please Mark This As Answer or vote for Helpful Post if this helps you to solve your question/problem.

  • Open BLOB Content from an Interactive Report in a New Window

    Hi All,
    I have an Interactive Report with the following query:
    SELECT ID,
      FILE_NAME,
      FILE_MIME_TYPE, 
      FILE_CHARACTER_SET, 
      DBMS_LOB.GETLENGTH(FILE_CONTENT) FILE_CONTENT, 
      FILE_LAST_UPDATED 
    FROM FILESThe Number/Date Format property for the FILE_CONTENT column is as follow:
    DOWNLOAD:FILES:FILE_CONTENT:ID::FILE_MIME_TYPE:FILE_NAME:FILE_LAST_UPDATE:FILE_CHARACTER_SET:attachment:DownloadWhen I click on the FILE_CONTENT link in the report, depending on the type of file, it opens in a new window or in my report’s window.
    I am trying to set the link to always open the content in a new window. I tried changing the Link Attributes to target="_blank" but it did not work.
    There is an example in the Package Application “Sample File Upload and Download” on apex.oracle.com. Page 1 has a report that allows you to add files. You can add files such as PDF, SQL, or TXT file in order to replicate my situation.
    I appreciate any help!
    Thanks,
    Erick

    The problem is solved!
    Apparently the Content Disposition: Attachment in the BLOB Download Format Mask does the trick.
    For some reason I have to logout and login again in the application to see the change.
    I tried changing the Content Disposition to Inline and then back to Attachment, and the file keeps opening in the same window unless I start a new session.
    Is there any explanation why it is working that way?
    Thanks!
    Erick

  • Task List URL (to FR Report) opens in new window, but not for all users!

    Hi all,
    I am not sure if this is the correct forum to ask the question (for me it looks like an IE topic), but perhaps anybody can help me anyway...
    In one of our Planning apps (9.3.1) we defined several task lists and tasks that link to relevant FR Reports (URL Tasks). If I open the URL task in basic view the relevant FR Report opens in the same IE Window (in the main frame of the planning app). If my colleague opens the same task the FR Reports opens in a new IE Window.
    My problem is that I dont have any ideas where I can set the relevant property. Is that a planning property, a workspace property or an IE property setting??? Where can I adjust the settings that for ALL users the URL opens the Report in the same window??????
    Thanks in advance!!!!
    Kind Regards
    André
    P.S.: We are on IE8.

    Have you both got the same settings in Tools > Internet Options > Tabs Settings
    There was also a bug though I can't say if it is related to your issue
    9549216 - Instead of a new tab, a new window is displayed after you create a Financial Reporting task in Workspace.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Opening link in the report in a new window

    Hi,
    I need to have a link in the html report which opens the destination in a new browser window. How can i achieve this? As of now i am using the following code, but the link is not opening in a new window.
    <fo:basic-link external-destination="{.//destination}" show-destination="new">
    <fo:inline>
    <xsl:value-of select=".//heading" xdofo:field-name="heading"/>
    </fo:inline>
    </fo:basic-link>
    Let me know what the problem is, as well as any other way to achieve the same.
    Thanks,
    Shanmuga.

    hi
    there is another way to drill down the report of web intelligence.for that we have to customize in the universe level create a folder in custom hierarchy and add your two objects to that folder, i.e empid. and deptid. the order of these objects should be in the way the drilling happens that means if you want to drill down from empid. to deptid. then empid. should be the first object of the folder,save and export the universe to the CMS.Then it ready to use for webi report.Build the query for the report and enable the drill option in the report.Now the report is ready for your requirement.
    thanks & regards
    Sreekanth K

  • How to open a report in a new window using RWWebServiceProxi????

    Which? First and foremost a greeting to all, here again bothering.
    I have an application in JDeveloper 10g and need to open a few reports designed in Oracle Reports 10g. Get jobId with RWWebServiceProxy and that works well.
    The league's report is generated correctly,
    The only problem I have is that I need to deploy the report in a separate window to which invokes the report. This when a click commandButton.
    Does anyone know what is the trick?
    Thank you, greetings.

    Thanks for answering Frank, goLink may be linked to a method of backbean?
    That what we need is to generate jobId through a method and immediately after deployment of the report on another page.
    Already tried to goLink component but unfortunately does not have the property to execute a method Action.

Maybe you are looking for

  • Problem in Wfetch client for Update operations

    Hi, I am using the Wfetch client for the 'Update' operation of an RFC Gateway consumption model . But it seems to always give this error : 'HTTP/1.0 400 Bad Request\r\n' I have passed only those fields that have been exposed in the GW Data model. Is

  • Guidence regarding creating  a test data and running any function module

    hi pals,    can you plz tell me how to create a test data, commit and run any function module, in details(step wise) ??

  • BI 7.0 Master Data Migration

    Hi Gurus, I have seen few threads for BI 7.0 Datasource Migration for transaction data but is it necessary to migrate even master data datasources (Attr and text, I understand that Hier DS cannot be migrated). Will there be any impact if we do not mi

  • Save file dialog - possible?

    Hi! I need to save a file to the clients local file system, so it would be nice if he could choose the directory and file name. I know it;s possible in PHP, so I believe there is something similar in JSF (JSP maybe?). Actually, my application uses AD

  • Color Cast in "Grid" Thumbnails

    I have a strange color cast (pink) that only shows up in the "Grid" and only on the thumbnails of the original RAW file. This color cast shows up in the over-exposed highlights of my thumbnails and is "NOT" because the "Highlight Hot Areas" is turned