Steps to link a report to Web Application Form. Post Your Opinion

Hi friends,
After going through it what is your opinion. please do post your opinion.
Could any one give the complete steps of Linking a report to web form so that when called / clicked the link the report can display the data.
I have unchecked the "Report Option -> Save Data with Reports". So that the report could not take extra space.
I have DB connection code in my .aspx.vb file, it is as follows:
Private Sub ConfigureCrystalReports()
Dim fileName As String = "Reports\" & ReportID & ".rpt"
Dim reportPath As String = Server.MapPath(fileName)
myRepDoc = New ReportDocument()
myRepDoc.Load(reportPath)
myCrystalReportViewer.ReportSource = myRepDoc
myCrystalReportViewer.RefreshReport()
Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
If Session("reportConnectionInfo") IsNot Nothing Then
Dim ConnInforArrList As ArrayList = DirectCast(Session("reportConnectionInfo"), ArrayList)
myConnectionInfo.ServerName = ConnInforArrList(0)
myConnectionInfo.DatabaseName = ConnInforArrList(1)
myConnectionInfo.UserID = ConnInforArrList(2)
myConnectionInfo.Password = ConnInforArrList(3)
Else
lblMessage.ForeColor = Drawing.Color.Red
lblMessage.Text = "Session is off. Please Relogin to See the Report."
End If
SetDBLogonForReport(myConnectionInfo, myRepDoc)
SetDBLogonForSubreports(myConnectionInfo, myRepDoc)
myCrystalReportViewer.SelectionFormula = GetFieldName(ReportID) & "='" & Session("CompCode") & "'"
myCrystalReportViewer.Visible = True
End Sub
Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
Dim myTables As Tables = myReportDocument.Database.Tables
For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
myTableLogonInfo.ConnectionInfo = myConnectionInfo
myTable.ApplyLogOnInfo(myTableLogonInfo)
Next
End Sub
Private Sub SetDBLogonForSubreports(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
Dim mySections As Sections = myReportDocument.ReportDefinition.Sections
For Each mySection As Section In mySections
Dim myReportObjects As ReportObjects = mySection.ReportObjects
For Each myReportObject As ReportObject In myReportObjects
If myReportObject.Kind = ReportObjectKind.SubreportObject Then
Dim mySubreportObject As SubreportObject = CType(myReportObject, SubreportObject)
Dim subReportDocument As ReportDocument = mySubreportObject.OpenSubreport(mySubreportObject.SubreportName)
SetDBLogonForReport(myConnectionInfo, subReportDocument)
If myReportObject.Name = "Subreport1" Then
Dim lvSec As Section = subReportDocument.ReportDefinition.Sections("DetailSection1")
If Not lvSec Is Nothing Then
Dim t1 As TextObject
t1 = lvSec.ReportObjects("txtEmpName")
t1.Text = Session.Contents("EmpName")
Dim t2 As TextObject
t2 = lvSec.ReportObjects("txtRepID")
t2.Text = Request.QueryString("REPID")
End If
End If
End If
Next
Next
End Sub
Please do help me out as the data of report is not getting displayed on the report.
After going through it what is your opinion. please do post your opinion.
While creating the Report has the following Report Options on / checked.
1. Database Server is Case-Incensitive
2. Use Indexes Or Server For Speed
3. Verify on First Refresh
4. Show Preview Panel
5. Display Alerts on Refresh
6. Select Distinct Data for Browsing
Do I have check or uncheck any other option?
Thanks and regards
Edited by: Md. Mushtaque on Sep 6, 2008 2:50 PM
Edited by: Md. Mushtaque on Sep 8, 2008 9:27 AM
Edited by: Md. Mushtaque on Sep 8, 2008 12:14 PM

Sir AG,
Thanks a lot for replying and spending your valuable time for my problem.
Sir, I just want to put this in your knowledge that my application is web based application and I am calling these reports through web forms i.e. of ASP.NET coded in vb from .aspx.vb files.
So as per the code I have attached, I have this
Option Explicit On
Imports CrystalDecisions.CrystalReports.Engine
Imports CrystalDecisions.Shared
Next for ReportDocument Object:
Dim fileName As String = "Reports\" & ReportID & ".rpt"
        Dim reportPath As String = Server.MapPath(fileName)
        myRepDoc = New ReportDocument()
        myRepDoc.Load(reportPath)
        myCrystalReportViewer.ReportSource = myRepDoc
Above is the code used by me in Page_Init  and I have already tested it from Page_Load. I have got few suggestions from this forum that I should put this code in Page_Init only.
Lastly:
The database connectivity code:
Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
        If Session("reportConnectionInfo") IsNot Nothing Then
            Dim ConnInforArrList As ArrayList = DirectCast(Session("reportConnectionInfo"), ArrayList)
            myConnectionInfo.ServerName = ConnInforArrList(0)
            myConnectionInfo.DatabaseName = ConnInforArrList(1)
            myConnectionInfo.UserID = ConnInforArrList(2)
            myConnectionInfo.Password = ConnInforArrList(3)
        Else
            lblMessage.ForeColor = Drawing.Color.Red
            lblMessage.Text = "Session is off. Please Relogin to See the Report."
        End If
        SetDBLogonForReport(myConnectionInfo, myRepDoc)
        SetDBLogonForSubreports(myConnectionInfo, myRepDoc)
SetDBLogonForReport(myConnectionInfo, myRepDoc)
Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
        Dim myTables As Tables = myReportDocument.Database.Tables
        For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
            Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
            myTableLogonInfo.ConnectionInfo = myConnectionInfo
            myTable.ApplyLogOnInfo(myTableLogonInfo)
        Next
    End Sub
This code I have got from a sample of the forum itself.
Sir, after all these effort and the unchecking of option "Save Data with Report" on calling the reports from my forms it is showing blank report. No data from the database is coming form the database.
I have uncheked the option "Save Data with Reports" to get the updated data each time the report has been called but now the status is that nothing is coming.
Thanks again for you precious and valuable effort to help me but the my problem is unsolved, So sir please if you could put an eye on it and help me out to get rid of this problem, I will be very thankful to you for your kind help.
Thanks and regards
Mushtaque

Similar Messages

  • Steps to link a report to web form

    Hi friends,
    Could any one give the complete steps of Linking a report to web form so that when called / clicked the link the report can display the data.
    I have unchecked the "Report Option -> Save Data with Reports". So that the report could not take extra space.
    I have DB connection code in my .aspx file, it is as follows:
    Private Sub ConfigureCrystalReports()
            Dim fileName As String = "Reports\" & ReportID & ".rpt"
            Dim reportPath As String = Server.MapPath(fileName)
            myRepDoc = New ReportDocument()
            myRepDoc.Load(reportPath)
            myCrystalReportViewer.ReportSource = myRepDoc
            'myCrystalReportViewer.RefreshReport()
            Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
            If Session("reportConnectionInfo") IsNot Nothing Then
                Dim ConnInforArrList As ArrayList = DirectCast(Session("reportConnectionInfo"), ArrayList)
                myConnectionInfo.ServerName = ConnInforArrList(0)
                myConnectionInfo.DatabaseName = ConnInforArrList(1)
                myConnectionInfo.UserID = ConnInforArrList(2)
                myConnectionInfo.Password = ConnInforArrList(3)
            Else
                lblMessage.ForeColor = Drawing.Color.Red
                lblMessage.Text = "Session is off. Please Relogin to See the Report."
            End If
            SetDBLogonForReport(myConnectionInfo, myRepDoc)
            SetDBLogonForSubreports(myConnectionInfo, myRepDoc)
            myCrystalReportViewer.SelectionFormula = GetFieldName(ReportID) & "='" & Session("CompCode") & "'"
            myCrystalReportViewer.Visible = True
        End Sub
        Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
            Dim myTables As Tables = myReportDocument.Database.Tables
            For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
                Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
                myTableLogonInfo.ConnectionInfo = myConnectionInfo
                myTable.ApplyLogOnInfo(myTableLogonInfo)
            Next
        End Sub
        Private Sub SetDBLogonForSubreports(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
            Dim mySections As Sections = myReportDocument.ReportDefinition.Sections
            For Each mySection As Section In mySections
                Dim myReportObjects As ReportObjects = mySection.ReportObjects
                For Each myReportObject As ReportObject In myReportObjects
                    If myReportObject.Kind = ReportObjectKind.SubreportObject Then
                        Dim mySubreportObject As SubreportObject = CType(myReportObject, SubreportObject)
                        Dim subReportDocument As ReportDocument = mySubreportObject.OpenSubreport(mySubreportObject.SubreportName)
                        SetDBLogonForReport(myConnectionInfo, subReportDocument)
                        If myReportObject.Name = "Subreport1" Then
                            Dim lvSec As Section = subReportDocument.ReportDefinition.Sections("DetailSection1")
                            If Not lvSec Is Nothing Then
                                Dim t1 As TextObject
                                t1 = lvSec.ReportObjects("txtEmpName")
                                t1.Text = Session.Contents("EmpName")
                                Dim t2 As TextObject
                                t2 = lvSec.ReportObjects("txtRepID")
                                t2.Text = Request.QueryString("REPID")
                            End If
                        End If
                    End If
                Next
            Next
        End Sub
    Please do help me out.
    Thanks and regards

    Hello Md. Mushtaque,
    Please post this query to the [.NET Development - Crystal Reports|SAP Crystal Reports, version for Visual Studio; forum.
    This forum is dedicated to topics related to custom application development or deployment with Crystal Reports in .Net. This includes full versions of Crystal Reports as well as those versions of Crystal Reports bundled with Microsoft Visual Studio .Net.
    The forum is monitored by qualified technicians and you will get a faster response there.
    Also, all Crystal Reports .NET Development queries remain in one place and thus can be easily searched in one place.
    Thanks a lot,
    Falk

  • Problems about deploying Oracle web application (Forms, Reports)

    I am going to deploy Oracle web applications (Forms and Reports) and plan to use the same server machine for both Application web server and Database server.
    1. How can I enable SSL (for data encryption) on Application web server for Oracle Forms ?
    2. Since both Application web server and Database server will use the same machine, do I still need Oracle Advanced Security for data transmission between Application web server and Database server if data encryption for transmission is required ?
    3. Can I user Oracle Forms to call Oracle Report on web as I did in Client/Server in the past ?
    Experts like you may have come across such problems. Would you please give me some opinions/ideas ?
    Regards,
    Richard

    1. check the paper about the Forms servlet architecture on otn forms section for SSL tips.
    3. Check the reports and forms integration paper on otn too.

  • How to run report on web in forms 10g

    dear all,
    i have a form which call a report in form 6i i used the run_object();
    how to run the report on web in forms 10g?
    is there any html settings?
    thanks
    Muhammad Nadeem

    Hello,
    <p>You can inspire from this article<br>It is a sample dialog that allows to launch any report with 0 up to 10 parameters.<br>Open the sample dialog, then you can see how the Run_Report_Object() built-in is used in the Start_Report program unit..<p>
    Francois

  • How to disable silverlight "Do you want to allow this Web application to access your clipboard?" popup window, when tyring to right click and paste?

    Hi,
    When im trying to right click and choose paste. im getting a dialog box.. "Do you want to allow this Web application to access your clipboard?". How do i disable it for all users?
    i found that, we can able to disable it for only one user, if we create a 'Clipboard' DWORD key with value '11' in the registry path: HKEY_USERS -> S-1-5-21-159.. -> Software -> AppDataFlow -> Software -> Microsoft ->
    Silverlight -> [website url]
    Even, i tried
    Internet Options> Security> Internet Zone> Custom Level> Scripting section> Allow Programmatic clipboard access> Enable. But its not working.
    Please let me know how to disable that popup for all users?

    It works fine on my machine here which is win7 pro.
    Your options are limited
    You know one way - the registry entry.
    The option:
    Internet Options> Security> Internet Zone> Custom Level> Scripting section> Allow Programmatic clipboard access> Enable.
    Has been changed by later versions of Internet explorer tightening security.
    I guess you could try:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
    meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
    Bit difficult for me to test at the moment, but that could work.
    If that's no good.
    The alternative is to give the app elevated trust.
    This is a PITA because you have to obtain a security cert and sign the xap with it.
    They expire as well and you then need to buy a new one.
    Costs several hundred quid a year ( this is one time cost rather than per user ).
    Hope that helps.
    Recent Technet articles:
    Property List Editing   ;  
    Dynamic XAML

  • Viewing Crystal Report Server reports in web application

    I would like to create a .net web application (Visual Studio 2005) to connect to a Crystal Reports Server (XI R2), retrieve a list of reports and then view the reports in crystalreportviewer embedded in the app. Since the BusinessObjects XI .Net Providers does not include crystalreportviewer, it looks like I will need to use Crystal Reports .NET for VisualStudio runtime. 
    1) Even though the third party would have a licensed Crystal Reports Server would they need an additional license for the use of crystalreportviewer provided in the Crystal Reports .Net runtime?
    2) Is there another option for using crystalreportviewer without installing the entire crystal reports .net runtime? The reports will  not be modified in any way, they will just be viewed in a web app. I have previously used OpenDocument to view the reports, but that is not an option in this case.
    Thanks,
    Coleen

    Hey koko1313,
    I understand that you are looking for the crystalreportviewer control.
    You can get the viewer by installing the sdk from the CRS XIR2 installation disc.
    Insert disc,
    do a custom install,
    Unselect all components and select 'businessobjects enterprise .net sdk' from under Client components and finish the installation.
    The above steps should update the viewer on you dev box.
    Note that sdk should be installed the similiar way on any machine where you deploy the app. No need for sdk if you are deploying to a box with CRServer XIR2 installed.
    I do not know anything regarding the licensing question for third party, but cr.net sdk custom app a separate license need to be purchased by third party.Sorry!
    cheers!!!
    DDCRDev

  • Crystal Reports 2008 Web Application Error

    Post Author: Jeff Clark
    CA Forum: .NET
    Hello,
    I am using Crystal Reports 2008 and Visual Studio 2005 to create and deploy CR web applications. These applications are installed on a Windows 2003 R2 server with .Net 3.0. I have previously used CR XIR2 for this purpose but upgraded to 2008 because I needed the added functionality in cross-tab reports.
    Some of the reports in the web application are pulling from a MySQL database. I am using a JDBC driver (version 5.1.5) to connect Crystal to the database. When I was using CR XIR2, all I needed to do was add the path for the JDBC driver in the CRConfig.xml in "C:\Program Files\Business Objects\common\3.5\java" directory and everything worked great.
    The runtime files for CR2008 create a "C:\Program Files\Business Objects\common\4.0" directory, but there is no "java" subfolder and no CRConfig.xml. When I attempt to load one of the MySQL reports I get the following error.
    "Error in File %Report Name%.rpt: Failed to load database information. "
    Is there a way to load JDBC drivers in the CR2008 runtime files?

    Post Author: Argan
    CA Forum: .NET
    I do not believe any java dlls are packaged in the runtimes for .net (same goes for the crdb_xml.dll, which is a java dll). I do not have a cr 2008 deployed server at the moment so I can not verify this.
       If you want to use java based db connectivity you will probably need to deploy them with your application.

  • Open OBIEE report from web application

    Experts, I want to open OBIEE report from a web application. I have a question regarding the security here. Say I login as 'USER1' in web application, I would have to pass 'USER1' in nquser parameter. Correct? Also, this report has access to 'Sales Group' users only. So, does 'USER1' in web application need to be assigned to 'Sales Group'? Or, any user in the web application can open this report as long as I pass nquser in the GOURL.
    thx,
    parag

    You don't need to specify group details.
    When the report hits OBIEE, it will determine the permissions based on the nquser.
    Hope it helps.

  • Crystal Reports and Web applications.. what is the future?

    Hello,
    I currently create reports in Crystal 11 R2 and display them within my intranet application using an SDK and asp calls.
    I would like to know what the future holds for this method... what upgrade path do I have?
    Certainly I intend to keep things the way they are as we have a large number of reports but I would like to know what options I will have to investigate\be aware of for the future?
    I realise my question is a bit open ended...
    What does SAP\Business Objects\Crystal decsions advocate in this regard... what is their prefered methond of providing reporting for web type applications?
    PS. I am not interested in portals etc. The application provides paramters and DSN switching at run time within the application.
    Cheers,

    Hi Scott,
    Moved to .NET SDK forum. Your next move is to ASP.NET and to CR Assemblies through RAS ( Report Application Server ). It is the replacement for the RDC you currently use.
    Lots of samples on how to through our WIKI:
    Root Page
    http://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsHome
    Enterprise Samples (including managed and unmanaged ras)
    http://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsSDKSampleApplications
    Non-Enterprise Samples
    http://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsSDKSampleApplications
    Exporting Samples (RAS)
    http://wiki.sdn.sap.com/wiki/display/BOBJ/NETRASSDK+Samples#NETRASSDKSamples-Exporting%2FPrinting
    Thank you
    Don

  • Database connection error when running report from web application

    Hi all,
    When I open a report in Reports Builder , and enter the database connection parameters, everything works fine. When I run my web application from JDeveloper (9.0.5.1), and I tried to run a report, I get this error:
    Rep-501 : Unable to connect to the specified database.
    I have ran tnsping, and it works fine. My tnsnames.ora file looks like this :
    GPGWL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1522))
    (CONNECT_DATA =
    (SERVICE_NAME = GPGWL)
    )

    Please ask this question in Jdeveloper forum.

  • Number of simultaneous reports in web application

    Is there a limitation regarding the number of simultaneous reports that can be processed (exported to PDF) for a web application developed with SAP Crystal Reports for Visual Studio?  Could there be license problems?
    Our application is currently using Crystal Reports XI but our client is planning to upgrade the server to Windows Server 2012, and it seems that the only version of Crystal Reports that would work with this operating system is SAP CR for Visual Studio.  We have the doubt about the number of simultaneous reports.

    With CR there are 2 processing limitations.
    'Print Job Limit' of Crystal Print engine which is 75 by default.
    See this:
    http://scn.sap.com/community/crystal-reports-for-visual-studio/blog/2014/04/25/what-exactly-is-maximum-report-processing-job-limit-for-crystal-reports
    http://scn.sap.com/docs/DOC-21533
    And 'Concurrent processing license' which is limited to 3.
    http://search.sap.com/notes?id=0001519938&boj=/sap/bc/bsp/spn/scn_bosap/notes.do?access=69765F6D6F64653D3939382669765F7361706E6F7465735F6E756D6265723D30303031353139393338
    Search the forum for print job limit or Crystal CPL, you would find plenty of info.
    - Bhushan
    Senior Engineer
    SAP Active Global Support
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Getting started and moving ahead with Crystal Reports .NET applications.

  • Calling Reports on Web from Forms

    Hello Friends,
    Right now I am able to run my reports from HTML page/by
    giving URL in IE.
    but I want to call reports from form application. in
    client/Server model, I used RUN_PRODUCT built-in. when i am
    converting to web, i don't know how to call reports from form.
    one way is using WEB_SHOW_DOCUMENT. in this case , we can not
    pass the Parameter List, as we pass parameter list in
    RUN_PRODUCT built-in.
    even though we can pass like
    report=xyz.rep&destype=screen ....
    If there is '&' in the paramtere value , how should we take
    care of this. If any one knows solution, please let me know
    Thanks in advance
    Regards
    Surendra.
    null

    Surendra Babu (guest) wrote:
    : Hello Friends,
    : Right now I am able to run my reports from HTML page/by
    : giving URL in IE.
    : but I want to call reports from form application. in
    : client/Server model, I used RUN_PRODUCT built-in. when i am
    : converting to web, i don't know how to call reports from form.
    : one way is using WEB_SHOW_DOCUMENT. in this case , we can not
    : pass the Parameter List, as we pass parameter list in
    : RUN_PRODUCT built-in.
    : even though we can pass like
    : report=xyz.rep&destype=screen ....
    : If there is '&' in the paramtere value , how should we take
    : care of this. If any one knows solution, please let me know
    : Thanks in advance
    : Regards
    : Surendra.
    Hi Surendra,
    Run Reports using Run_product tool by passing all the parameters
    reqd. for your report and save it as a file in *.pdf format(
    recommended) then call the saved report in WeB.Show_document
    which will call your saved report .
    Ex:
    DECLARE
    pl_id ParamList;
    BEGIN
    pl_id:=Get_parameter_list('mtetgdata');
    IF NOT Id_Null(pl_id) then
    Destroy_Parameter_list(Pl_id);
    END IF;
    Pl_id:=CREATE_PARAMETER_LIST('mtetgdata');
    ADD_PARAMETER(pl_id,'PARAMFORM',TEXT_PARAMETER,'NO');
    ADD_PARAMETER
    (pl_id,'DESTYPE',TEXT_PARAMETER,:REP_LAUNCH.DESTYPE);
    ADD_PARAMETER(pl_id,'DESFORMAT',TEXT_PARAMETER,'PDF');
    ADD_PARAMETER
    (pl_id,'P_RECV_129',TEXT_PARAMETER,:REP_LAUNCH.RECV_129);
    ADD_PARAMETER(pl_id,'DESNAME',TEXT_PARAMETER,'J:
    \WEBFORMS\RepTemp\ACHD_129.pdf');
    ADD_PARAMETER(pl_id,'P_START_DATE',TEXT_PARAMETER,TO_CHAR
    (:REP_LAUNCH.START_DATE,'DD-MON-RRRR'));
    RUN_PRODUCT(REPORTS,'J:
    \WebForms\REPORTS\ACHD_129.rdf',SYNCHRONOUS,RUNTIME,FILESYSTEM,pl
    _id,NULL);
    WEB.SHOW_DOCUMENT
    ('http://xdb.oraweb.net:8889/Webforms/RepTemp/ACHD_129.pdf','_sel
    f');
    end;
    I hope this will solve your problem
    Rao Guduru
    null

  • Unable to link the report from an application

    Hi,
    I have java application.  There is link in one of Pages of application.
    When user clicks on the link, it opens up WebIReport ( there is only 1 report, XI 3.1 ).   I don't want user to enter his username and passwd again ( we get prompt for username and passwd when we try to login to infoview ). 
    Can anyone send me the code for that ?
    I tried with my code, but its not working.
    Diablog

    From what I understand, you have a custom application that is viewing a webi document that links to a webi document using an opendocument URL.  You will either have to have SSO setup for opendocument or pass a token in the URL that can be used to authenticate. 
    Since the link is part of the Webi report, you probably can't modify that URL at runtime to include a token.  Your best option is to make the URL in the report point to a custom page that can create a token and a opendocument URL based on the rest of the parameters that you are passing in the URL.

  • Problem with linking to reports in Web Intelligence XiR2

    Hi,
    I'm having trouble doing even a basic (direct) link to a sub report or a report.
    These are my tries:
    (webserver name)
    http://corpwebapps:8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?&sDocName=KPI_Dashboard_Legenda&sWindow=Same&sType=wid&sRefresh=Y
    (server name)
    http://SRV0010:8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?&sDocName=KPI_Dashboard_Legenda&sWindow=Same&sType=wid&sRefresh=Y
    I've tried getting the properties of the report from infoview, to get an idea of the directname; That would be:
    Webi/webi_view.aspx?id=38868&windowProperty=fullscreen=yes,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes",38868,true,"iv","fullscreen=yes,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=yes","");
    What am I doing wrong?
    The admin assures me that the application is at port 8080;
    Thanks for your help!

    Basicly a 'Page cannot be displayed' error.
    When I remove the port I get
    The page cannot be found
    The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
    Please try the following:
    Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.
    If you reached this page by clicking a link, contact the Web site administrator to alert them that the link is incorrectly formatted.
    Click the Back button to try another link.
    HTTP Error 404 - File or directory not found.
    Internet Information Services (IIS)
    Technical Information (for support personnel)
    Go to Microsoft Product Support Services and perform a title search for the words HTTP and 404.
    Open IIS Help, which is accessible in IIS Manager (inetmgr), and search for topics titled Web Site Setup, Common Administrative Tasks, and About Custom Error Messages.
    When I keep the port I get an error in Dutch, which most likely is the langeuage used on the server.
    The notice is also slightly different; It sais that I should check for connection problems there (in a little red box).

  • Linking oracle reports with the application

    i have few oracle reports that i need to link it to the application such that when i click on the button in the applications pahe the report should be opened...
    can any one tell me exactly how to integrate a oracle report with html db application...

    http://www.oracle.com/technology/products/database/application_express/howtos/howto_integrate_oracle_reports.html
    that should give you a good start.
    regards
    Duncan

Maybe you are looking for