Report link to popup window

Hi All,
Using Portal, I've designed a report based on a table, this report includes links to another report (detailed information), my problem is that it opens the new report in a full new window (screen size), I need to open the new report inside a popup window of a pre-defined size. Any ideas ?
BTW : my initial report is displayed in a portlet.
At this moment, the only trick i have found is to target the link to a dynamic page including the detailed reports with a onload tag and a javascript openwindow, I didn't try at this moment and hope there is a more elegant way to do this !
Thanks for your help.

You will be needing both PL/SQL and javascript.
You need a javascript function to do the window.open()
You will need some pl/sql code in the Additional pl/sql block (before showing the header) to generate the javascript function.
Use htp.p() to generate the javascript function.
The javascript function that you are going to generate, say callreport2(param1), will do a window.open("<url-of-2nd-report">);
If you are using reports based on sql queries, stop using the link component. Instead, you will have to generate the link in the query e.g. if I need to generate a link on the ename field and if the 2nd-report takes empno as the bind var, then my query wud be :-
select '<a href="javascript:callreport2(''' || empno || ''')">' || ename || '</a>' ename,
from scott.emp
Make the display type of the ename field as HTML

Similar Messages

  • Creating a PDF report within a popup window

    bq. Hi, \\ Within my application i've a page which uses JasperReports to generate a simple PDF report within prerender(): \\ public void prerender() { \\ try { \\ this.planned_bar_tripsDataProvider1.refresh(); \\ if (this.planned_bar_tripsDataProvider1.cursorFirst()) { \\ getApplicationBean1().*jasperReport* \\ ("PlannedBarTripsReport", "application/pdf", \\ getSessionBean1().getPlanned_bar_tripsRowSet1(), null); \\ } \\ } catch (Exception ex) { \\ log("Exception generating report", ex);} \\ } \\ jasperReport() is taken from the Sun PDF tutorial (http://developers.sun.com/jscreator/learning/tutorials/2/reports.html) \\ Now, when this page is opened within the application (browser) window the PDF report successfully renders. \\ However, when the page is opened within a popup window, using the (onclick) Javascript function: \\ function generateReport() { \\ window.open('PlannedBarTripsReport.jsp') ; \\ window.event.returnValue = false; \\ } \\ the PDF report fails to render. The result is a brief pause followed by a blank popup. No exception. No Abobe embedded window. No clues as to what's gone wrong. \\ Any advice would be greatly appreciated. \\ Ta.

    Hi Venkatv and everyone.
    This is the link where I found about Including Dynamic Images in a Report.
    http://www.oracle.com/technetwork/testcontent/apexprnt2-otn-098981.html
    It's so easy and clear to do.
    Good Luck!!!
    Regards.
    Ayrem

  • How to pass value from report table to Popup window

    suppose i have a report region
    from query
    "Select * from emp"
    i need to get a popup when i click on the row,
    i need all the columns should be displayed inthe popup window;
    i have written javascript in the report template, by passing #COLUMN_VALUE#
    the issue here is iam only getting the column on which i click,
    is there any way to refer the next column ?
    or am i doing it in wrong manner ?

    Hi Mike,
    Yes what you said is exactly correct ,
    i have a query , but for that i need some PK { three columns } from the the page where this popup will be called,
    i have three columns in the row which makes it as PK,
    now how can i pass three columns from a page to popup ? provided if i click on the row of an table, i want that rows three column to be passed .

  • Link to popup window not working

    I have a calendar page in which I'm setting up a column link to another page within the app.
    However, I have some syntax error in the javascript popup statement. I have tried many things, but cannot find what the problem is.
    This works (no popup):
    f?p=&FLOW_ID.:43:&SESSION.::&DEBUG.::P43_ACT_ID:#ACT_ID#
    This does not work (popup):
    (I left off the initial < so the text would not be converted to html)
    a href ="javascript:popUp2('f?p=&FLOW_ID.:43:&SESSION.::&DEBUG.::P43_ACT_ID:#ACT_ID#',500,400)" >#ACT_DESC#</a>
    Does anyone see what's wrong with this syntax?
    When I run it (click on the link), I receive this error msg:
    "Bad Request The HTTP client sent a request that this server could not understand."
    Thanks!
    -Reid
    Edited by: reidster on Aug 8, 2009 12:25 AM

    Hi Reid,
    href="javascript:..." tells the browser to go to the address bar (href) and type in "javascript:....". This won't work!
    Change your link to:
    a href="#" onclick="javascript:popUp2('f?p=&APP_ID.:43:&SESSION.::&DEBUG.::P43_ACT_ID:#ACT_ID#',500,400)"href="#" tells the browser not to do anything with the address bar and we are relying on the onclick event itself to call the popup
    Also note that you should use &APP_ID. not &FLOW_ID.
    Andy

  • How to set the width and heigh in the popup window

    Hi All,
    I tried to show a report in a popup window style.
    In the column link section, I defined the URL like the following:
    javascript:popupURL('f?p=&APP_ID.:128:&SESSION.::&DEBUG.::P128_PAY_RATE,P128_PAY_TERMS:#PAY_RATE#,#PAY_TERMS#'). how and where to set the height and width for page 128?
    Thank you,
    spark

    Here is a sample of the JavaScript function I re-use that opens a popup window. You'll notice that it includes the width and height of the popup window:
      function callTCPopup (formItem1) {
        var formVal1 = formItem1;
         var url;
      url = 'f?p=&APP_ID.:1111:&APP_SESSION.::::P1111_TC_ID:' + formVal1;
      w = open(url,"winLov","Scrollbars=1,resizable=1,width=800,height=600");
      if (w.opener == null)
      w.opener = self;
      w.focus();
      }You could also look at using a Modal Page (Skillbuilders' plugin - watch the video for use).

  • How to startup a report in a popup after committing a form (solution)

    How to startup a report in a popup window after succesfull submission of a form</p>
    In Portal Applications you can create forms in which e.g. users can enter
    order-entries. When a user submits his order, it's a good practice to show his
    filled-in order-form, containing the delivery address, items, descriptions,
    prices etc etc.</p>
    In this solution the order-report is started up in a popup window after
    succesfully completing the order-entry form.</p>
    Once you've created the form and report, you have to take two extra steps
    (the abbrevation mos represents MyOrderSystem and offcourse you should replace
    that by the schema- and applicationname you use).</p>
    1  Create a package to startup the report</p>
    <font face="Courier">create package MOS.MOS_POPUP_ORDER 
    as 
     procedure show ( order_id varchar2, backurl varchar2 );
    end; </font></p>
    <font face="Courier">create package body MOS.MOS_POPUP_ORDER 
    as 
     procedure show ( order_id varchar2 , backurl varchar2 ) 
     is 
      l_url varchar2(2000);
    begin 
     if order_id is not null 
     then
    -- URL to startup the report. Surf to the Develop tab while managing the
    -- portal-report and click on Show the call interface.
      l_url := 'http://www.mydomain.com/pls/portal30/' 
            &#0124; &#0124; 'MOS.MOS_ORDER_REP.show?'
            &#0124; &#0124;
    'p_arg_names=_show_header&;p_arg_values=YES&;'
            &#0124; &#0124; 'p_arg_names=order_id&;p_arg_values=' 
            &#0124; &#0124; order_id;
    -- Display the popup window and startup the report.
      htp.p('<SCRIPT> var MyWindow = window.open(&quot;'
            &#0124; &#0124; l_url
            &#0124; &#0124;
    '&quot;,&quot;MyOrderWindow&quot;,&quot;toolbar=no,location=yes,directories=no,'
            &#0124; &#0124;
    'status=no,menubar=yes,scrollbars=yes,resizable=yes,'
            &#0124; &#0124;
    'height=400,width=600,left=150,top=150&quot;);'
            &#0124; &#0124;
    'MyWindow.focus();</SCRIPT>');
    -- Now you have two options:
    -- 1. When you have your form in a Portal Page, you want to return to the page.
    -- 2. When you have your form in a full window, you only have to return to that
    --    window.
    -- The coding is as followed:
    -- 1. Copy this URL from the navigator pointing to the page.
      l_url := 'http://www.mydomain.com/pls/portal30/'
            &#0124; &#0124;
    '!portal30.wwpob_page_util.redirect?'
            &#0124; &#0124;
    '_pageid=123&;_mode=3&;_tabstring=&;_portletmode=&;_cache=1';
    -- 2. Parameter backurl contains automatically the correct url to return
    --    to the form in full browser mode.
      l_url := backurl;
    -- Now return to the original window.
      htp.p('<SCRIPT>self.location.href=&quot;'
           &#0124; &#0124; l_url
           &#0124; &#0124; '&quot;</SCRIPT>');</font></p>
    <font face="Courier"> end if;
    end;</font></p>
    2  Modify the form</p>
    In the &quot;on succesful submission of a form&quot; part you enter this
    PLSQL. Note that the order is identified by the column ORDER_ID and the CALL
    procedure needs two parameters: the url for starting up the report and the
    parameter name for the back-url. </p>
    <font face="Courier">declare
     l_order_id integer;
    begin
     l_order_id := p_session.get_value_as_NUMBER(
     p_block_name => 'DEFAULT',
     p_attribute_name => 'A_ORDER_ID');
     call('mos.mos_popup_order.show?order_id='&#0124; &#012 4;l_order_id,'backurl');
    end;</font></p>
     </p>
    null

    Excellent tip! Thank you for that!
    One question - where you have hardcoded the URL to navigate to the report and back again, I'd like to be able to do this without the hardcoding. The domain of my development environment is different from the domain of my production environment, and I don't want to have to remember to change the URL when I handover code. How could I do this?

  • XSLT Issue to open URL in new tab and PopUp Window through one custom style

    I have SharePoint Online Custom List that contains two columns
    Name: Single Line of Text
    URL: Hyperlink or pictures
    Using XSLT I have shown Name columns value on my home page by using below custom style in
    Itemstyle.xsl file.
    Custom style to show Link in PopUp window   itemstyle.xsl
    <xsl:template name="OpenApplicationPagePopUp" match="Row[@Style='OpenApplicationPagePopUp']" mode="itemstyle">
    <xsl:variable name="SafeLinkUrl">
    <xsl:call-template name="OuterTemplate.GetSafeLink">
    <xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
    </xsl:call-template>
    </xsl:variable>
    <xsl:variable name="DisplayTitle">
    <xsl:call-template name="OuterTemplate.GetTitle">
    <xsl:with-param name="Title" select="@Title"/>
    <xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
    </xsl:call-template>
    </xsl:variable>
    <div class="item link-item">
    <xsl:call-template name="OuterTemplate.CallPresenceStatusIconTemplate"/>
    <a href="{$SafeLinkUrl}" onclick="ShowPopupDialog(GetGotoLinkUrl(this));return false;">
    <xsl:if test="$ItemsHaveStreams = 'True'">
    <xsl:attribute name="onclick">
    <xsl:value-of select="@OnClickForWebRendering"/>
    </xsl:attribute>
    </xsl:if>
    <xsl:if test="$ItemsHaveStreams != 'True' and @OpenInNewWindow = 'True'">
    <xsl:attribute name="onclick">
    <xsl:value-of disable-output-escaping="yes" select="$OnClickTargetAttribute"/>
    </xsl:attribute>
    </xsl:if>     
    <xsl:value-of select="$DisplayTitle"/>
    </a>
    </div>
    </xsl:template>
    My Requirement to show only Suggestion Box in Popup window Other Links Should be open in new Tab So please suggest me what can change in above xslt...
    Thanks
    Deepak Chauhan
    SharePoint 2010 & 2013 and Office-365 Branding and Front End Customization, UI Design

    Hi,
    In SharePoint 2013, we can use JSLink to achieve it.
    1. Save the following code as a js file (URLPopup.js) and upload it into the
    SiteAssets Document Library.
    // List View – Field open modal dialog Sample
    (function () {
    // Create object that have the context information about the field that we want to change it output render
    var linkFiledContext = {};
    linkFiledContext.Templates = {};
    linkFiledContext.Templates.Fields = {
    //Apply the new rendering for URL field on List View
    // "URL" is the column name.
    "URL": { "View": URLFiledTemplate }
    SPClientTemplates.TemplateManager.RegisterTemplateOverrides(linkFiledContext);
    // This function provides the rendering logic for list view
    function URLFiledTemplate(ctx) {
    var itemTitle=ctx.CurrentItem.Title;
    var urlLink=ctx.CurrentItem.URL;
    var urlDesc=ctx.CurrentItem['URL.desc'];
    if(urlLink!=null&&urlLink!=""){
    if(itemTitle=="Suggestion Box"){
    return "<a href='#' onclick=\"openModalDialog('"+urlLink+"')\">"+urlDesc+"</a>";
    }else{
    return "<a href='"+urlLink+"' target='_blank'>"+urlDesc+"</a>";
    }else{
    return "";
    function openModalDialog(url)
    var options = {
    title: "Suggestion Box",
    autoSize: true,
    url: url
    SP.UI.ModalDialog.showModalDialog(options);
    return false;
    2.Edit the list view page.
    3.Edit the list web part. Go to Miscellaneous -> JS Link.
    4.Add the following URL into the JS Link textbox.
     ~site/SiteAssets/URLPopup.js
    5.Click "OK" and save the page.
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Webdynpro java   popup windows, extranalwindows ,diolag window

    anybody  send  link for   popup windows, extranalwindows ,diolag window
            steps  to  create  popup window  in  webdynpro java.
    Edited by: venkatpvr on Sep 23, 2011 2:06 PM

    Hi Venkat,
    Please look at
    [Popup windows|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/20d2def3-f0ec-2a10-6b80-877a71eccb68] and [Creating Pop Up Window Using New Features in WDJ|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/2066c269-a17a-2c10-8fa7-f6a690c59288]
    [Diolag Window:|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/903fed0d-7be4-2a10-cd96-9136707374e1]
    Hope this helps!!
    Regards
    Vijay K
    Edited by: VijaySAPEP on Sep 26, 2011 11:46 AM

  • Trying to get a popup window to work via report

    I have a need to offer a link in reporting on the Opportunity Description field where the description would be displayed in a popup window (I do not wish to launch another child OOD window via prompt report). The fact that these description field can be quite long and make reports difficult to read drives this request. I am currently looking at overriding the data statement on the column in question. For example, I can easily do the following:
    @[html]"<a href=""http://www.cnn.com"">"@"</a>" -which simply proves that I can embed html code with the column value
    I have tried the following with no success:
    @[html"<a href=""javascript:mywindow=window.open('','','width=200,height=100');
    mywindow.document.write('"@"');mywindow.focus();"">"@"</a>"
    I have a feeling that the problem lies in the escaping of the quotes but hoping that someone else may have the answer.  Also, if there is a better way to accomplish what I'm trying to do, please chime in.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi Glfnute,
    When writing the HTML code in column formula, ensure you start it with a single quote and also end the expression with it. So your code will look something like this:
    '{<}a href = "http://.... com" target="_blank" {>}' || column name here || '{<}/a{>}'
    Using target = blank will open your link in new window.
    Curly brackets are used above to prevent the text from getting rendered as an html over here. Remove them and use the remaining string in your report.
    I hope this helps.

  • [Forum FAQ] How do I display disclaimer message popup window before display the SSRS report?

    Question:
    The requirements is that when you click the report on report manager you will get an popup window with the disclaimer message, only after you read this message you can click the “Agree” button, then you can continue to read the content of the report, if you
    disagree with it, you can click the “Disagree” button to back to the home or other path you want.
    Answer:
    To achieve this goal, we can add some JS or JQuery code in the report.aspx file in the path like:”C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\Pages”
    Find the path of the report.aspx file and add these code in to it.
    <script type="text/javascript" src="</script">http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script>
    <link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/start/jquery-ui.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
     $(function() {
            var result = new RegExp('[\?&]ItemPath=([^&#]*)').exec(window.location.href)[1];
    //get the path of the folder which the report exists
            var reportFolder = result.split('%2f')[1];
    //get the report name which you want to add this pop up window.
    var reportName = result.split('%2f')[result.split('%2f').length - 1]; 
     //hide the report before you click the agree button
           document.getElementById("ui_form").style.display = "none";
                //alert(result);
                //alert(reportFolder); //test the report folder name to see if it is correct
           if (reportName == "your report name" && reportFolder=="your folder name") {           
     $("#dialog").dialog({
                    title: "jQuery Dialog Popup",
                    height: "250",
                    modal: true,
                    buttons: {
                        "Agree": {
                            text: "Agree",
                            id: "my-button-id1",
                            click: function() {
                                $(this).dialog('close');
    //display the report after you click the agree button.
    document.getElementById("ui_form").style.display = "block";                         }
                        "Disagree": {
                            text: "Disagree",
                            id: "my-button-id2",
                            click: function() {
                                location.href = '/Reports'
            else {
                document.getElementById("ui_form").style.display = "Block";
    </script>
    <div id="dialog" style="display: none; z-index:20001">
     Please make sure you have read this information and understand clearly before enter the report.
    </div>
    When you click the report you will the popup window as below:
    when you click “Agree” the report will display and when you click “Disagree” it will back to the home page.
    Applies to:
    Reporting Services 2005
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Reporting Services 2014
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Question:
    The requirements is that when you click the report on report manager you will get an popup window with the disclaimer message, only after you read this message you can click the “Agree” button, then you can continue to read the content of the report, if you
    disagree with it, you can click the “Disagree” button to back to the home or other path you want.
    Answer:
    To achieve this goal, we can add some JS or JQuery code in the report.aspx file in the path like:”C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportManager\Pages”
    Find the path of the report.aspx file and add these code in to it.
    <script type="text/javascript" src="</script">http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script>
    <link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/start/jquery-ui.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
     $(function() {
            var result = new RegExp('[\?&]ItemPath=([^&#]*)').exec(window.location.href)[1];
    //get the path of the folder which the report exists
            var reportFolder = result.split('%2f')[1];
    //get the report name which you want to add this pop up window.
    var reportName = result.split('%2f')[result.split('%2f').length - 1]; 
     //hide the report before you click the agree button
           document.getElementById("ui_form").style.display = "none";
                //alert(result);
                //alert(reportFolder); //test the report folder name to see if it is correct
           if (reportName == "your report name" && reportFolder=="your folder name") {           
     $("#dialog").dialog({
                    title: "jQuery Dialog Popup",
                    height: "250",
                    modal: true,
                    buttons: {
                        "Agree": {
                            text: "Agree",
                            id: "my-button-id1",
                            click: function() {
                                $(this).dialog('close');
    //display the report after you click the agree button.
    document.getElementById("ui_form").style.display = "block";                         }
                        "Disagree": {
                            text: "Disagree",
                            id: "my-button-id2",
                            click: function() {
                                location.href = '/Reports'
            else {
                document.getElementById("ui_form").style.display = "Block";
    </script>
    <div id="dialog" style="display: none; z-index:20001">
     Please make sure you have read this information and understand clearly before enter the report.
    </div>
    When you click the report you will the popup window as below:
    when you click “Agree” the report will display and when you click “Disagree” it will back to the home page.
    Applies to:
    Reporting Services 2005
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Reporting Services 2014
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • Issue...SAP gui popup window along with Excel report

    Hi,
    In MSS portal I am trying to review one excel report. While clicking particular report link in portal it is opening a small sap gui window while generating excel report. I don't know how to stop that gui pop-up window?
    Thanks,
    Padmanaban

    Hi Padman,
    Pls. install JVM on you local machine..
    Regards
    Pramod

  • Report link that will open to a new window

    Hi,
    I need a report link that will open to a new window. Below is my code.
    {="<ahref=\"http://<server>:<port>/OpenDocument/opendoc/openDocument.jsp?sRefresh=Y&sPath
    ParentFolder,subfolder&sDocname=<Report Name>=wid"\">"[ID]+"</a>"}
    Thank you.
    Rose

    Add the parameter sWindow=new to your URL
    ...openDocument.jsp?sDocname=SalesReport&sWindow=new
    OpenDocument Documentation:
    XI 3:
    http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_url_reporting_opendocument_en.pdf
    R2:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/800f7400-bf3e-2b10-fa81-c6c74f457ab4

  • IR truncating leading zeros in my popup window report

    Hello,
    I am using IR_columnname, for one of the columns in my report which is a popup window report.
    My problem is that IR_column search filter in my popup window is truncating the leading zeros.
    I am getting the value but it is truncating the leading zeros.
    like say if the deptno is something like 020 or 0020 in the parent window.
    the IR_columnname value is taking '20' (its truncating leading zeros) with this filter its not dispalying the result in my popup window.
    can anyone help me out with this.
    thanks.

    How are you passing values to the IR filter? There could be a possibility that you source logic is truncating the leading zeros.
    Thanks,
    Manish

  • Hyperlink on Crystal Report: how to popup a window without menubar?

    Hyperlink on Crystal Report: how to popup a window without menubar?
    Hello Experts!
    I'm using VS2003 with Crystal Reports for VS2003.
    I need to show a popup window clicking a hyperlink text object on my crystal report.
    On the CrystalReportViewer I have set up HyperlinkTarget=_blank, and it's working fine.
    But when I click on the hyperlink and shows the popup window, how can I show the popup window without menubar, toolbar, directories, etc.
    Something like:
    window.open('../MyPage.html?id=id001" + Cad + "',null,'menubar=no,scrollbars=yes,toolbar=no,location=no,directories=no,resizable=yes,status=yes')

    Adam is correct. The closest you can get is setting the CrystalReportViewers HyperlinkTarget to _blank. It was seen as a potential security vulnerability to allow you to run scripts from a Crystal Reports. In our Enterprise product you can use a reg key called EncodeHTMLForSingleLineFieldObjects to control whether this can be turned on or off.
    Unfortunately this was never ported over to our .NET CrystalReportViewer.
    This is referenced in notes 1202803, 1219298, and 1219301.
    https://www.sdn.sap.com/irj/sdn/businessobjects-notes
    Edited by: David Hilton on Jul 16, 2008 4:17 PM

  • Unable to return from a column link to popup page in the same window

    Using 3.2
    I have a tabform with a link to a pop-up page (and passing values). It's working fine but when I 'Save' on the pop-up, instead of returning to the originating page, it opens up a new window with the originating page on it. How do I get back to the originating page? I'm sure it's in my branch or button url syntax but can't figure it out. I tried creating a process to 'close window' but still opens up a new window.
    FYI - if I just do the 2nd page as a normal page, all is fine but the users would prefer a popup.
    Thx.
    Sandie

    Use the template 'Popup' for your page.
    Create a After Submit Process and select the option 'Close Window'. Make sure this is the last process (highest sequence number). This will automatically closes the popup window and user will be on the parent page.
    Do not create any branches on the popup page or any target in your Save button.
    If you need to refresh the parent page with the information entered on the popup page, enter the following code, at the end, in the process that does your DML (a process that comes before the Close Window process).
    htp.p('<script>');
    htp.p('window.opener.location.reload(true);');
    htp.p('</script>');
    I have created popups this way and they work, at least in 3.2version. In APEX 4.0, the parent page is not refreshing with the data entered on the popup page, which I'm currently investigating into. If you have a different code to refresh the parent page, please share it with me.
    Edited by: rbheemir on Nov 10, 2010 2:56 PM

Maybe you are looking for

  • Free collection of all SAP material link

    Hi all, I notice that so many people are getting difficulty in finding SAP materials. That is why I would like to share you these 2 links. I found that the owners of the sites are very kind and generous. Please respect their wishes by using the free

  • Satellite PRO A200-1S1 with Windows 7 x32. Touchpad doesn't work

    Hi everybody I Installed Windows 7 on my Satellite Pro A200-1S1, retrieved all the drivers on Toshiba site, everything works fine (less than the web camera that didn't work even with previous s.o. XP or Vista...). But my Touchpad doesn't work at all.

  • Output levels don't match

    Hi All hopefully I'm in the correct place. I have a limiter on the master fader set to -.2. The level on the master fader is peaking at +1.4 If I alter the limiter to -1.2, the master fader peaks at +.4 This has only just started happening. I've open

  • Generating a number in advanced table

    Hi everyone, I have an advanced table in my custom page which i have already implemented. The extra feature i am trying to add now is to add a sequence of numbers in one of the columns of the advanced table so that each time a row is added in the adv

  • How to display PSA screen capture on Front Panel

    Any one know how to display screen capture of PSA series specturm analyzer on front panel. I can save the JPEG file in the C drive, but I can't display on the front pannel. Please see my labview code. Solved! Go to Solution. Attachments: Capture scre