Opening a specific Interactive report from a link

Hello,
I have a chart which links back to a page with interactive report. I want to make sure that every time user clicks on the link on the chart page, he is shown the default report view. But currently it shows the last viewed report from various saved reports. Is there a way I can call the default report. I tried RIR in clear cache section of the link but does not seem to take me back to default report.
Any help is highly appreciated.
Regards,
Bhavesh

Have you looked at the actual Javascript that is called when an interactive report is reset? You might be able to use this in a region that is conditionally "displayed" when the page is called from the chart. Perhaps using the REQUEST as the condition.
Craig
[www.oracleapplicationexpress.com|http://www.oracleapplicationexpress.com]

Similar Messages

  • The way to open 3D pdf with specific model selection from url link

    I guess this feature is not supported, but let me ask one thing.
    I am looking for the way to open 3D pdf with specific model selection from url link.
    For example, if the following link is opened, is it possoble to open 3d.pdf with automatic selection of "abc" model in the model tree? 
    http://example.org/3d.pdf#model=abc
    If it can be done by javascript, it's really helpful.

    Impossible. There are only very limited command-line options for the Acrobat Family and you cannot change them.

  • Calling a .rdf report from a link on a apex report column

    Hi,
    I want to call a xxx.rdf report from a link on a apex report column.
    Can anyone help me on this ?
    Best regards,
    JCN

    Hi,
    Sorry - I should have read a bit further in your last post!
    The url variable that you're defining should just be the URL string that you want to create, so you only need the "http://........" part. There's also a + missing after the "&TODT..." string.
    The "DEA_PERMIT_ID=&G_PERMIT_ID." part at the end should have an & at the start to indicate a new parameter in the URL. Otherwise, &G_PERMIT_ID. would be replaced by the value stored in the session for the G_PERMIT_ID item (presumably that is an Application Item?).
    So:
    function callPopup()
    var url = "'http://snapper.accsp.org/reports/rwservlet?destype=cache&desformat=PDF&report=edr_landings_dollars_by_vessel.rdf&userid=evtr_report/chicken99@safis&FROMDT=" + $v("P810_FROM") + "&TODT=" + $v("P810_TO") + "&DEA_PERMIT_ID=&G_PERMIT_ID.";
    popupURL(url);
    }Andy

  • Create Filter on an Interactive Report in a Link

    Hello,
    Here is info on my environment:
    Database: 10.2.0.1.0
    O/S: Windows XP
    APEX: v3.2.1
    I am trying to use the IR<operator>_<target column alias> feature to filter the linked Interactive Report. The feature does not seem to work. Does this feature work on a 10g database?
    Background:
    I am building the application (AnyCo Corp) described in the _2 Day + Application Express Developer’s Guide_ . On page 4-27 the section titled "_Linking a Column Value to Another Page_" describes linking from the Department report to the Employee report with the Column Link item IR_DEPARTMENT_ID. The link did not work, however.
    The included APEX Users Guide discusses this feature. The path to the relevant section is: Home > Adding Application Components > Creating Reports > Editing Interactive Reports > Linking to Interactive Reports. The Guide describes the string IR<operator>_<target column alias> with lots of operators.
    This is a neat feature. Unfortunately, no matter how I try to use it, it does not work. What am I doing wrong?
    Leon

    Check out these blog postings from the APEX Dev Team:
    http://anthonyrayner.blogspot.com/2008/07/dynamic-date-filtering-in-interactive.html
    http://dpeake.blogspot.com/2008/03/advanced-interactive-reports.html

  • Interactive Report with 2 Links

    I have an interactive report that was built from application wizard when I import an excel spreadsheet.
    The report has an edit link already that is working. The information for that link appears to be on the report attributes tab under the link column section. I need to add another link and found code on the forum which I will put below.
    The problem is the new link column shows, but the button doesn't show, just all the code seen starting with the a href. So - is there a syntax problem that anyone can see? Any input is appreciated. Thanks -- Shelly.
    SELECT CASE WHEN (:A_ROLE = 'MASTER') THEN
    '<a href="'
              || 'f?p=&APP_ID.:3:&SESSION.::&DEBUG.::'
              || 'P3_ID:'
              ||  ID
              || ">'
    || '<img src="#IMAGE_PREFIX#show.gif" border="0">'
    || '</a>'
    ELSE NULL END LINK_COL,
    "ID",
    "PARTNUMBER",
    "DESCRIPTION",
    "SPI",
    "HTS",
    "ECCN",
    "GRI",
    "SOURCEOTHER_INFORMATION",
    "COUNTRY",
    "INITIALS",
    "CHANGE_DATE"
    from "PARTS_CLASSIFICATION"
    where
    NVL(PARTNUMBER,'@') LIKE (:P10_PARTNUMBER || '%') escape '@'
    and NVL(DESCRIPTION,'@') LIKE (:P10_DESCRIPTION || '%') escape '@'
    and NVL(SPI,'@') LIKE (:P10_SPI || '%') escape '@'
    and NVL(HTS,'@') LIKE (:P10_HTS || '%') escape '@'
    and NVL(ECCN,'@') LIKE (:P10_ECCN || '%') escape '@'
    and NVL(GRI,'@') LIKE (:P10_GRI || '%') escape '@'
    and NVL(SOURCEOTHER_INFORMATION,'@') LIKE (:P10_SOURCEOTHER_INFORMATION || '%') escape '@'
    and NVL(COUNTRY,'@') LIKE (:P10_COUNTRY || '%') escape '@'
    and NVL(INITIALS,'@') LIKE (:P10_INITIALS || '%') escape '@'

    Hi Shelly,
    The post doesn't show the code that you have used, so I can not say if there is a syntax error.
    However, you should first check, on Report Attributes, that the LINK column is showing as "Standard Report Column" instead of "Display as Text (escape special characters)"
    Andy

  • Interactive report from PL/SQL function

    Hello All,
    i have a pl/sql function that dynamically builds up a sql query and returns it as a varchar2.
    when i create a new report then i can use this function in the report like
    return f_function(param1,param2,v('APP_ID'), v('APP_SESSION'));
    and this works fine.
    Except i cannot create an interactive report for this function, because it is not allowed !!!!
    So how can i use the function in an interactive report ?
    Thanks in advance,
    Marco

    Marco,
    Another rather extreme approach would be to go all the way and make your function pipelined (that is not only build but also execute the query) and then select from it in your interactive report.
    The disadvantage here would be that any supplementary filtering would act on the result set of the function (not as an addition to the where clause of the original query). But if you can live with that...
    The advantage would be that there's less fiddling with column headers.
    Regards,
    Iulian

  • How do I open / run Cognos Impromptu Report from CSharp

    Hi,
    I am new to Csharp and using C# for my application development and I need to load Cognos Impromptu application and run a report from my application automatically and run the report to create ascii text file. Is there any code is available? I have vb.net
    code but I do not know how to write it is in C#. If you have please send me, your help is really appreciated.
    for your reference I am sending vb.net code, I need the below code in CSharp.
    Call Cognos("C::AccountsPayable DOWNLOAD.IMR", "c:\APDownload.txt")
    Function
    Private Sub Cognos(ByRef StrReport As String, ByRef StrText As String)
            Dim objImpApp As New Object
            Dim objImpRep As New Object
            objImpApp = CreateObject("CognosImpromptu.Application")
            'Open Impromptu catalog
            objImpApp.OpenCatalog("C:\Program Files\cognos\cer5\Deltek\IMP74GCSP41\Catalog\All Tables.cat")
            'Open the report that will be exported to text format
            objImpRep = objImpApp.OpenReport(StrReport)
            objImpRep = objImpApp.ActiveDocument
            ' objImpRep.ExportAscii(StrText, , -1) 
            objImpRep.ExportAscii(StrText, 0, -1, , 0)
            objImpRep = Nothing
            objImpApp = Nothing
            MsgBox("Cognos Done")
        End Sub
    Thanks

    Hi ncsatyanand,
    This forum is for questions about Microsoft products. The best way to use this component is to ask IBM for the documents or API. Here's the official site of this component:
    Cognos Impromptu
    I took a closer look at your VB.NET code, seems that the method Cognos creates a COM object "CognosLmpromptu.Application", and call the method in this COM object. In C# project, if you want to call some COM object, you have many choices. One of them is to
    add reference to the COM object by using the "Add Reference" option. Right click your project>>Add>>Reference>>COM, if you have installed the component properly, it should contains the necessary COM objects. Then just create an instance of
    the COM object and call the members of it.
    CognosImpromptu.Application app=new CognosImpromptu.Application();
    app.OpenCatalog("C:\Program Files\cognos\cer5\Deltek\IMP74GCSP41\Catalog\All Tables.cat");
    Another way is to create the instance of the COM object using reflection with the ProgID:
    Type type = Type.GetTypeFromProgID("CognosImpromptu.Application");
    dynamic app= Activator.CreateInstance(type);
    app.OpenCatalog("C:\Program Files\cognos\cer5\Deltek\IMP74GCSP41\Catalog\All Tables.cat");
    With the dynamic keyword, the members of the COM object will be invoked at runtime, without knowing the exact types of them.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Make Interactive report from Oracle Store Procedure returning SQL

    I have the following type of Report Region:
    Report Region Type:
    SQL Query (PL/SQL function body returning SQL query)
    Region Source:
    DECLARE
    q varchar2(4000);
    BEGIN
    GetMySQLString(:P22715_SID, q);
    return q;
    END;
    function GetMySQLString() return varchar2 is
    begin
    return 'select * from myTable';
    end GetMySQLString;
    For some reason though I can't figure out how to get it to work with an Interactive Report.... Basically I want the report to use the SQL returned by the Oracle Stored Function....
    Any thoughts?

    Should have searched better!
    Guess this should help: Calling Procedure or Function from Interative Report
    Edited by: tward on Sep 3, 2010 8:55 AM

  • How to have both Classic Report and Interactive Report from the same page?

    Hello APEX developers,
    I want to copy a page consisting of master-detail form together with its data, as in data stored in the tables.
    I've generated a master-detail form(which by default having its detail report as a classic report). I want to copy this page and then migrate this classic report to Interactive Report. This way, I have both the classic master-detail form with report AND the master-detail Interactive Report.
    I've tried doing this but ended up getting a new master-detail Interactive Report page without its data.
    Any feedback is appreciated.
    Best regards,
    Daniel

    Hi everyone,
    Solved already. What a relief! Kindly ignore this post.
    Rgds,
    Daniel

  • Calling A BI Publisher Report From A Link In An Apex Report

    I have a report on my page
    select id, aa, bb
    from table_x
    What I want to do is to have an extra column or use the id column as a link (which says Print Report) to call an BI Publisher report. This call should pass over the id and open the report in a popup window.
    For certain reasons I do not want to use the built in report queries and layouts in apex, just call the report straight for BI.
    I call other BI reports in my application, but always from a button.
    Help appreciated
    Gus

    Hi,
    All that such a button does is submit the page and branch to page zero passing in the request field something like this:
    PRINT_REPORT=my_report
    So, to do the same in a dynamic action, use an "execute javascript code" action with something like this in it:
    location.href = 'f?p=&APP_ID.:0:&SESSION.:PRINT_REPORT=my_report';
    Luis

  • View a Detailed report from a link in a General Report?

    Greetings all,
    I have no idea why I am confused on what I am trying to do. I have a Report that Generates a tabluar view off all tickets the actual ticket has 25 fields to be filled in, but of course on the tabular view, I only have four of the relevant fields that the user can see.
    Example:
    TICKETID TICKETDESCRIPTION TICKETSTATUS TICKETOWNER
    0001 | Stuff Broke | Awaiting Customer | Bob
    0002 | Part Missing | Open | Fred
    0003 | Need Help with Stuff | Open | Sandy
    What I am trying to do is create the TICKETID as a link that will open another report with all the details about the Ticket. Currently I have the report and it has a link to go and edit the fields on the form based on P12_TICKETID = #TICKETID# in the link field. But I can't find a way to link it to another report. Am I missing something? I want the user to see all the details about the ticket, but I don't want them to be able to edit the report. I guess I am not clear on how to create a selectable report based on one ticket verses a report that lists them all.
    Currently the tabular report is on my Page 11 and I don't see how to reference the report fields by any P11_xxxx naming as I have tried and it tells me it can't see them.
    The P12_TICKETID is the Form that analysts use to update the ticket, so I don't want the customers to access that unless there is a way to access it as a view only.
    I hope that made sense and if so, could someone tell me what I am missing in my thinking. I would think this would be a standard process for APEX but I am lost on it.
    Thanks in Advance.
    Wally

    If I understand right,you want a new report, that contains all 25 columns, but just for the selected record. There are several ways to accomplish this, including creating a form that would be read-only. To create this as a report, you need to create a new page, you can create a report on that page but use a value attribute pairs report template (this will show the label on the left and the value on the right for each column and each column going down the page, rather than across). Create a hidden item on your page to store the selected ticket_id and then link to that new page, passing #TICKETID# to the hidden item. Lastly, modify the query on your new page to include 'where ticketid = :P?_TICKETID'.
    Again, you could create a classic report that just includes all 25 columns or a form and then make each item display only or the scenario I described above. Good luck.
    -- Sharon

  • How to forbid the use of right click to open a pop up window  from a link ?

    I would like to prevent the user from opening pop up windows using the right button of the mouse on a link.
    Is it possible ?
    Thank you in advance for any help and suggestion.
    Paolo

    Is this regarding OAF ? if this is a requirement in OAF, then its not possible(unless you put in some javascript function in the page).
    If you want to do it in other jsps there are a lot of examples available in google on how to do this.
    Thanks
    Tapash

  • Firefox won't open (in a new session) from email link. I have this issue on my Win 7 and XP computers.

    If I open my email account (TBird) w/out opening Firefox, and then try to open a link from the email, Firefox will not open. I can't then go and open it from the desktop either. I used to go to Task Manager and close the .exe file," but MS has changed that so that I can't get into the "process" area. How do I fix this?

    Although 6 other people seem to have encountered this problem, nobody has offered a solution yet. Perhaps the following will put some Firefox gurus on the right trail.
    When I said "my search results", I meant the results obtained with Google (standard when installing Firefox). Now I have tried another search engine (Dogpile) and there The tabs do work. Very strange, isn't it ?

  • Opening up a Word Doc from a Link in Dreamever

    I am trying to Open up MS Word from a Button /hyperlink on a
    nav menu on the web site that is linked to a MS Word Template. I
    have tried many different ways but still can't accomplish this. Any
    Help would be greatly appreciated .
    TIA
    Guy

    what ways have you tried?
    what does or doesn't happen?
    suggestion:
    place a copy of the word .doc file within this site's Local
    Site Folder.
    Rename the file if needed, to get rid of blank spaces or
    punctuation marks.
    Make the link to it in the page with dw.
    upload the page.
    upload the word .doc file
    done.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Error when trying to open, edit & save the document from email link

    Hi,
    The error occurs when user tries to open the document from the email link (after the document is "shared" with them.
    The recipient has been given edit rights.  When the document is opened it is opened in read only.  The recipient will click "Edit Document" and then they receive an error
    "The file or folder name http://servername/sites/documents/Shared Documents/IT/Test/TESTfile.xlsx?NoRedirect=true' contains characters that are not permitted. Enter a different name."
    Any suggestions please.
    Thanks.

    Hi Inderjeet,
    Thank you very much for you reply.
    I tried with the LAN options, it didn't help.
    I see that in the
    http://blog.ray1.net/2007/12/file-or-folder-name-contains-characters.html it's written as the error occurs while "Creating a new site based on a custom site definition, you get the above error", which is not my case.
    Mine happens when I click on the link from the email body. An exact thread I found :
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/d724a882-66cf-4515-a088-afd7d088b103/email-link-to-share-documents?forum=sharepointgeneral&prof=required
    But no solution is mentioned there as well.
    I think this is an issue with SharePoint 2013. Do you agree? I would like to invite more experts for their opinion on this please.
    Many thanks & Regards

Maybe you are looking for

  • Confused; auto writing changes into xmp

    I am not sure which settings to use for the catalog settings options concerning writing changes to the xmp data or not. Kelby says he leaves the "Automatically write changes into xmp" unchecked because it takes additional processing time. Martin Even

  • Why does my iPad2 often reboot by itself?

    My iPad2 has been working fine since beginning. However, it starts to reboot itself while I am watching online video or browsing with Safari. I tried to reset it via iCloud, the the problem persists, please advise,

  • Reading Long Text from MM03

    I need to read a long text from MM03, view - Sales Text. I cannot use FM READ_TEXT as there is no header data available there. How do i do it?

  • After Effects Fails to render due to a big file size?

    I recorded some video clips in a x264 codec (AVI) and well since i cant import them into AAE (it wont recognize them) i just did some editng wit sony vegas and  rendered the full video in 1080p uncompressed and it was about 20 GB's total. i added it

  • Manufacturing a DVD in Europe?

    I have authored a DVD for a client in Europe and wonder if anyone has a recommendation for a facilty to manufacture them over there. I am based in Canada so could do them here with our normal facility in Toronto but shipping them over would be proble