Generate report using Word Report Generation VIs error

When I Generate report using Word Report Generation VIs  ,the error is generated.
This is  my Vi
can somebody  tell the error reason?
The attaché is Vi (one is 2011,other is 8.6)
Attachments:
report-8.6.vi ‏16 KB
report2.vi ‏33 KB
template.doc ‏40 KB

Hi Ben64
             Thank you! The problem is solved.
   BUT when I use the Word Easy Graph vi  ,the result is
I want the Graph (curve),like as:
How Can I do get the picture.
I have other problem. I want to get default name for the new word file.
liang

Similar Messages

  • How to view multiple reports using crystal reports 2008

    Hi ,
    I am working on vb6 project where in i am trying to generate reports using crystal reports 2008.
    For this , i am making use of Interop Form Wrapper class in vb6.
    I have a business requirement where in i need to view multiple reports  on my screen.
    please suggest me as to how this can be achieved.
    Thanks in Advance
    Regards,
    Ramnath

    Hi Ludek,
    I  am directly now using crystal report viewer control in my vb6 project.
    As mentioned in previous mail, i have created a Interop Wrapper class over crystal report viewer control in .Net using visual studio 2008 and i am making use of wrapper class in my vb6 project.
    I am able to access all the properties that have been defined in my Interop wrapper Class but the only stuff i need is to view multiple reports generated one after the another for a single button click Event.
    Please find below the code that iam using to load and generate reports.
    Note:
    1. frm is the instance of my Interop Wrapper Class built over CR viewer control
    2. All the user defined methods of Wrapper class that you see below will internally call the actual crystalreportviewer   properties defined in my Wrapper class
    Say for e.g   frm.DisplayToolbar(True) will internally  execute  crystalreportViewer1.DisplayToolbar = True
    frm.SetReportSource(strRptFilePath,0)          
    frm.SetSelectionFormula(strrecordSelectionFormula)
    frm.DisplayToolbar(True)               
    frm.ShowExportOption(True)
    frm.ShowPrintOption(True)
    frm.ShowRefreshOption(True)
    frm.ShowPAgeNavigateOption(True)
    frm.ShowZoomOption(True)
    frm.ShowParameterPanelOption(True)
    frm.Show()
    Thanks in Advance
    Regards,
    Ramnath

  • How to set DbConnections when scheduling a crystal report using Crystal Reports Server Java SDK?

    Post Author: Manjula
    CA Forum: JAVA
    Hi,
    Trying to schedule a report using Crystal Reports Server Java SDK. Want to pass DBConnections from API, though passing DBConnections, the report is not being scheduled and says "Failed to retrieve data from the database.Details:[Database Vendor Code:6550].
    Would be thankful if someone could answer my point as applicable.
    Here is the code attached.
    ISDKList dbLogons = oReport.getReportLogons();int dbLogonSize = dbLogons.size();
    for(int i=0; i<dbLogonSize; ++i) {
    IReportLogon dbLogon = (IReportLogon)dbLogons.get(i);
    dbLogon.setDatabaseName("DBname");
    dbLogon.setUserName("usrname");
    dbLogon.setPassword("pwd");
    Thanks in advance.

    Post Author: Manjula
    CA Forum: JAVA
    Ted,
    Thank you for your valuable information.
    First, tried scheduling on Central Management Console and then with the java code.It worked fine, but here is another question for you.
    On the Console, a report exists with ServerName and UserName harcoded and when trying to set ServerName and UserName from the java code, its throwing exception. Where as Password is not set on Console, am able to set password from java.
    And DatabaseName is not set on Console (non editable), unable to set the same from java too. Why is it so?
    So, my question is - though ServerName,DatabaseName,UserName,Password exists on the Console report, can't I override those parameters from java?
    Would be greatful if you answer my question and provide me some guidance.
    Thanks in advance.

  • Can i open a existing report using a report generation toolkit

    Hello All,
    Suppose I create a new excel report today and close the program, Tomorrow I open the same program and instead of creating a new excel file, i need to update the test results data into the excel file which was created yesterday, is this possible.
    I am confused because there is no option called Open report in report generation toolkit, it just has create new report option.
    Probably NI Guys can work on this...sorry if it is a;lready existing?
    Is there any method to open a existing report?
    Pls help.....
    Thanks
    Solved!
    Go to Solution.

    Hi,
    I have a similar problem. I'd like to use Report Generation Toolkit to enter data into some cells in the active worksheet of the active workbook but it seems impossible?! The user has in beforehand opened the desireed workbook and activated the desired worksheet. I use the 'New Report' VI with the template input set as the path of the active workbook (some self-made ActiveX calls to get the path). When this VI is run, howevere, the excel file is sort of re-opened and another worksheet becomes the active one.
    I tried to make a customized copy of New Report.vi, New Report subVI.vi and Excel_Open_Workbook.vi so that the Report object works with the currently active workbook and worksheet, but I failed due to my lack of knowledge in LV classes and such things. It would've been an ugly solution anyway to have custom low-level VIs that does not follow when the RepGen Toolkit develops in the future.
    Best regards,
    Andreas Nilsson

  • Generate report using ELIXIR report server

    hi all pls anyone help me teach how generate report in jsp from ms sql 2000 database.. i'm using Elixir report software www.elixirtech.com. Thanks for ur kind help.. pls email me to [email protected]
    ramkumar

    hi thanks for reply.. do u have any example code for generatereport.jsp
    i have try this but show error
    <%@ page import = "java.io.*,
    com.elixirtech.ers2.client.ERSClient,
    javax.servlet.http.*,
    java.util.*"
    %>
    <%!
    //Stream back to browser
    public void generateReport(javax.servlet.http.HttpServletResponse response,
    javax.servlet.http.HttpServletRequest request) throws Exception {   
              String contentType="application/vnd.ms-excel";
              String testFileName="test.xls";
         javax.servlet.ServletOutputStream sos = response.getOutputStream();
    response.setContentType(contentType);
         response.setHeader("Content-Disposition", "Inline;filename="+testFileName);
    String report="C:/home/RepertoireSDK-1.0.1/examples/ReportSamples/README.rml";
    if(report!=null){
                   ERSClient ersclient = new ERSClient("localhost", 7001 , "Anonymous", "anonymous");
                   //ERSClient ersclient = new ERSClient("localhost", 8090 , "admin", "123456");
                   try
                        Properties props = new Properties();
                        ersclient.renderReport(report,contentType, sos, props, "me");
                   }catch (Exception ex){
                   }finally{
                   ersclient.close();
    %>
    <%
    generateReport(response,request);
    %>
    <html>
    <head>
    <title>Sample Server JSP</title>
    </head>
    <body marginwidth="0" marginheight="0" bgcolor="#E7F0E0">
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    java.lang.IllegalStateException: getOutputStream() has already been called for this response
         org.apache.catalina.connector.Response.getWriter(Response.java:606)
         org.apache.catalina.connector.ResponseFacade.getWriter(ResponseFacade.java:195)
         org.apache.jasper.runtime.JspWriterImpl.initOut(JspWriterImpl.java:124)
         org.apache.jasper.runtime.JspWriterImpl.flushBuffer(JspWriterImpl.java:117)
         org.apache.jasper.runtime.PageContextImpl.release(PageContextImpl.java:191)
         org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext(JspFactoryImpl.java:115)
         org.apache.jasper.runtime.JspFactoryImpl.releasePageContext(JspFactoryImpl.java:75)
         org.apache.jsp.Sample_005fReport_005fServer_005fBrowser_jsp._jspService(org.apache.jsp.Sample_005fReport_005fServer_005fBrowser_jsp:94)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    i dont know what is the error please help tq

  • Generate a MS Word report from PDF Form

    Is there a way to generate a MS Word file output from the contents of a PDF form?
    Background:
    Back in the days when Acrobat Pro was packaged with LiveCycle Design for PDF form development, I created a very extensive document that walked the reader through a series of questions and then gathered the answers into a printable form.
    Unfortunately, the new version of Acrobat no longer is integrated with LiveCycle and I need to make updates to the document. LiveCycle only works on Windows machines and since I am on a Mac, it seems that I am left with few options.
    What would be the best possible solution is if after the reader entered all of the data in the PDF form, they could click a button and the document would generate a MS Word file with all of the variables and input fields arranged in a meaningful format.
    Is there any way to accomplish this in the new Acrobat Pro?

    Apparently you had LiveCycle Designer in the past.
    Unfortunately, the format of the form field names used by LiveCycle are different than the format used by Acrobat.
    You could try exporting the Forms Central form to the PDF format and you might be able to use the form to import the data.

  • Drill Down Report using Crystal reports in eclipse and jspviewer

    Hi
    I want to understand how to write a drill down report since I have a requirement for my project, so I tried to run the sample drill down.rpt that is available with Crystal Reports 2008 Complete Reference book by George Peck.
    I can see the results correctly( i.e. can drill down) in the preview tab . Since I am working inside the eclipse, the way I run the reports is first  "Create report viewer JSP" by right clicking the report and have a url mapping to this jsp. I am running the reports from a hyperlink that maps to the url which will launch the jsp.
    the jsp is:-
    <%@ page contentType="text/html; charset=UTF-8" pageEncoding="ISO-8859-1" %><%@ taglib uri="/crystal-tags-reportviewer.tld" prefix="crviewer" %><crviewer:viewer reportSourceType="reportingComponent" viewerName="Drill Down-viewer" reportSourceVar="Drill Down" isOwnPage="true" allowDrillDown="true">
         <crviewer:report reportName="reports/Drill Down.rpt" />
    </crviewer:viewer>
    The one that was created by  "Create report viewer JSP" did not had "allowDrillDown" attribute at all .But I added it since it isnt working.
    So when I launch my web app and click on the link to run the report, I get the report results but only to the summary level. When I double click the summary level I get a 404 error page.
    Can please anyone suggest what is going on.
    Thanks
    poonam

    Ok. So, you added the report to the project. Now we have to add the CR assemblies to the project, add the viewer (if need be) and fire it off. Simplest code would be:
    Public Sub New()
            ' This call is required by the designer.
            InitializeComponent()
            ' Add any initialization after the InitializeComponent() call.
            CrystalReportViewer1.ReportSource = ("path to report")
        End Sub
    In this case you are using the viewer SDK to runt he report. The report will prompt for any logon parameters - but you can code these also. You can load the report via the engine as bellow. Again, the report will prompt. I prefer to use the engine as it is way more "extensible"...
    Public Sub New()
            ' This call is required by the designer.
            InitializeComponent()
            ' Add any initialization after the InitializeComponent() call.
            Dim crReportDocument As New CrystalDecisions.CrystalReports.Engine.ReportDocument()
            crReportDocument.Load("path to report")
            'Bind the report to the viewer
            CrystalReportViewer1.ReportSource = crReportDocument
        End Sub
    If you have a report added to the project (strongly typed) the code would be:
    CrystalReportViewer1.ReportSource = New myReport()
    For more details, I'd recommend looking at the sample app vbnet_win_simplepreviewreport.zip available from the following location:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    The developer help files are here:
    [SAP Crystal Reports .NET SDK Developer Guide|http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_dg_2010_en.zip]
    [SAP Crystal Reports .NET API Guide|http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_api_2010_en.zip]
    - Ludek

  • Excise reports using XL reporter

    Hello experts
                         I generated Excise reports using files available in Indian  legal reports.How can we get drill down facility in these reports?
    Regards
    Manoj

    Hi Manoj........
    What kind of drill down you want in Excise XL reports?
    It works like normal XL Sheets...
    More you can import it in SAP Business One Menu....
    Regards,
    Rahul

  • Sub report group tree in main report Using crystal report 12

    Hi experts,
        I have a strange requirement like, same data needs to be grouped two different ways in a same report.  Like
    Store1:
        Summary of sales on each item chart
    Store2:
        Summary of sales on each item chart
    .....it goes like this
    Department1(multiple stores)
          summary of sale on each item chart - store1
          summary of sale on each item chart - store2
         --........ it goes
    Department2
          summary of sale on each item chart - store3
    --........ it goes
       Its in single report, the first part is grouped only with store and in second part the store is under department. How to do this in same report?
        I achieved  this by creating a sub report to display the first part of data and in the main report sup report data plus the second part of data will be displayed. And its working well but now the problem is the group tree, I'm not able to see the sub report group tree in the main report.
       How to get the sub report group tree in the main report, Or is there any other better way is there so i can get both the data as well the group tree. Please help me to solve this. CryCryCry
    I'm using crystal report 2008(installed separately) with Visual Studio2008 (.Net3.5)
    Thanks in advance.

    Hi
    Thanks for the reply.
        Yea both data source are same(Datasource is SQL Stored Procedure). I cant use like that, because my client needs the group tree also. In case if there is no group tree, we can create one more group and supress it conditionaly. But here the problem is there is no way to suppress any of the group item in group tree as we can do it in the detail section.
        So please me with some different ways and also , please clarrify the following doubts
    1. Can we supress one or more items in the group tree.
    2. Can we get the sub report group tree in main report(Everything is working when i used the sub reports except the group tree). So I'm trying for different ways to do, but none is helping me
    Please help me

  • Hyperlinks in RTF and Excel reports using CF Report Builder

    Has anyone gotten external links to work in RTF and Excel CF
    Report Builder reports? The PDF report type works as advertised in
    the help, but these other two have me stumped.

    Could you please tell us whether you fllowed any special procedures
    or made some specific settings to launch RTF reports ?Can't help much, I'm afraid. The report and web server settings were
    all made before I got here, and are not visible to me.
    We can get RTF from report builder/generate-to-file and when running
    reports on the web. Our servers are all Sun/Solaris boxes, although
    we display on DOS boxes. Excel we get from a program, not from the
    report server.
    Report builder 6.0.8.10.1, database claims to be 8.1.7.0.0.
    Sorry I can't help much more than saying "yes, it can be done".
    Allan Plumb

  • Performance of filtering a report using another report

    Hello,
    There are really two questions in this post:
    i) Is there an easier way to select all contacts who have never responded positively to a campaign than to filter our report using the output of another report which selects all contacts who responded positively to at least one campaign? While this approach works properly, I have only been able to successfully run the report on a small sample of the entire data set. The report including all contacts who responded positively to at least one campaign contains about 8k records, and our system contains about 12k contacts. When I ran the report on the full data set, I was unable to obtain any output even after waiting for up to 10~15 mins.
    ii) If I am using the right approach, does anyone know if CRMOD can handle a report filtered on another report with a data set the size of the one described above?
    Any help/comments would be greatly appreciated.
    Thanks,
    JP

    Hi,
    There are a few things I would suggest here:
    1. Run all your reports individually and export the results to excel. Use the VLOOKUP function in excel to get the dataset you're looking for, once you have the final set you can always create a custom checkbox field and import all your records flagging your field as a 'Y'. That will make things nice and simple for reporting and anything else as all of your records can be identified with a simple filter. I do however guess this is probably a fluctuating on-going process and this may not be appropriate
    2. In your reports add another 'Contact ID' column. Change the calculation to: RCOUNT(Contact.ID). This report should count the unique Id's in your report, you can then apply a filter on it e.g. My Column < 4000 or My Column > 4000. This will limit the number of rows in your report so that you can have multiple feeds. You will obviously need another report for each filter but it should trim the records numbers down for you an make this all possible
    3. Use the MINUS functionality as per my first suggestion on the 1st post, this does not have these limitations but it a pain to setup. You shouldn't have an issue with this if you're using the same subject area for each report, when you start combining lots of different subject areas then it all gets a little more tricky
    Thanks
    Oli @ Innoveer

  • Problem in Display the Crystal report using Crystal report Viewer 2008

    Hi All,
    I have developed crystal web project with crystal report using Eclipse IDE. when I deploy this web application using Tomcat server 6.0 in Windows xp, Windows Vista.. It is working fine..
    But When I deploy it into Windows 2000 server ,  I am not able to see Last 2 columns of the report page in the Viewer.
    But When I tried to Export as Excel, I got all the datas in the Report and also when I preview the report in Eclispe IDE using crystal viewer plugin it is working fine in Windows 2000 server also..
    Thanks in Advance for your help..
    Regards,
    SathiyaMBPS

    Windows 2000 is not supported in current versions of CR. Check the platforms PDF file.

  • Help for -Generate Report using Word template having company Logo

    HI GUys,
    I am trying to generate a report in PDF using the word template having some company logo as footer to that .
    When user click on print ,the graph should be added to the template and its should output the report in pdf.
    I am able to achive this when I 'm  not using the template,but when I use the template (sample code shown below),its throws the error attached in screenshot.
    pls suggest the possible way to achieve this

    Why are you deleting the file after creating the report? Are you sure that the image exists at the path specified when running?
    Also, in your top screenshot because of data flow there's a high possibility that you actually delete the file before it gets used because there is no connection between the end of writing the report and deleting the picture.
    I also suspect there's a chance there might be a permissions issue - you are trying to get the file from another user's desktop which isn't normally allowed - do the file/folder permissions give you access to that file path? I would try putting the picture on your own desktop just to rule that out.
    Certified LabVIEW Architect, Certified TestStand Developer
    NI Days (and A&DF): 2010, 2011, 2013, 2014
    NI Week: 2012, 2014
    Knowledgeable in all things Giant Tetris and WebSockets

  • Error in MSS Report (Using MSS Reporting Launch Pad)

    Hello,
    I'm currently using the convert manager's desktop data to MSS report launch pad for the portal.
    When trying to run the report in MSS, I'm getting the error below:
    "Error in Manager Self Service.  When calling the report, the following error occured.  Error when executing query Z_ABCD."  This is from an SAP Query report and I could not determine what caused this error.
    Have anyone encounter this and if you are able to resolve it?
    Any information would be greatly appreciated.
    Thank you,
    Tam Ly
    County of Sacramento

    hi,
    Go to transaction RSCUSTV27 and check if any standard template is maintained.
    Use
    In this activity you can make the following settings (for systems with a Release higher than SAP BW 3.x):
    You can set your own Web template as the standard Web template for ad hoc analysis.
    You can set your own Web template as a standard Web template for BEx Broadcasting.
    You can set a Web template that is used during BEx Broadcasting for queries for generating documents.
    You can specify a Web template that is used during BEx Broadcasting for enterprise reports.
    You can set your own Web template as a standard Web template for reports.
    Standard settings
    The delivered standard Web template (0ANALYSIS_PATTERN) is used for ad hoc analysis.
    The delivered standard Web template 0BROADCASTING_TEMPLATE is used for BEx Broadcasting.
    The delivered standard Web template 0QUERY_TEMPLATE_BROADCASTING70 is used for broadcasting queries.
    The delivered standard Web template 0REPORT_TEMPLATE_BROADCASTING is used for broadcasting reports.
    The delivered standard Web template 0REPORT_DEFAULT_TEMPLATE is used for executing enterprise reports.
    Activities
    To set your own Web template as a standard Web template for ad-hoc analysis, enter the technical name of the Web template under Ad-hoc Analysis. If you do not specify anything, the delivered standard Web template (0ANALYSIS_PATTERN) will be used for ad-hoc analysis.
    To set your own Web template as a standard Web template for BEx Broadcasting, enter the technical name of the Web templates under Broadcasting.
    To set your own Web template as a standard Web template for BEx Broadcasting for queries for the generation of documents, enter the technical name of the Web templates under Query Precalculation.
    To set your own Web template as a standard Web template for reports, enter the technical name of the Web template under Enterpr. Reports.
    Note that if you change settings, you have to restart the J2EE Engine before the changes become effective.
    Regards,
    Kams

  • Exception while generating pdf report using Jasper Report

    Hi experts,
    I am using Jdeveloper : 11.1.2.0.0
    Jaspersoft iReport Designer 4.5.0
    Database is Oracle 11g
    When i try to generate a pdf report ,a pdf file with empty content is generating.
    and exception occuring is
    net.sf.jasperreports.engine.JRException: Error executing SQL statement for : TestReport
         at net.sf.jasperreports.engine.query.JRJdbcQueryExecuter.createDatasource(JRJdbcQueryExecuter.java:229)
         at net.sf.jasperreports.engine.fill.JRFillDataset.createQueryDatasource(JRFillDataset.java:731)
         at net.sf.jasperreports.engine.fill.JRFillDataset.initDatasource(JRFillDataset.java:629)
         at net.sf.jasperreports.engine.fill.JRBaseFiller.setParameters(JRBaseFiller.java:1159)
         at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:802)
         at net.sf.jasperreports.engine.fill.JRBaseFiller.fill(JRBaseFiller.java:746)
         at net.sf.jasperreports.engine.fill.JRFiller.fillReport(JRFiller.java:58)
         at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:417)
         at net.sf.jasperreports.engine.JasperFillManager.fillReport(JasperFillManager.java:247)
         at com.empAppln.view.EmployeeRegister.runReport(EmployeeRegister.java:153)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:105)
         at org.apache.myfaces.trinidadinternal.taglib.listener.FileDownloadActionListener.processAction(FileDownloadActionListener.java:124)
         at oracle.adfinternal.view.faces.event.rich.FileDownloadActionListener.processAction(FileDownloadActionListener.java:77)
         at javax.faces.event.ActionEvent.processListener(ActionEvent.java:88)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcast(UIXComponentBase.java:814)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:179)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:159)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1129)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:353)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:121)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:457)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
         at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:889)
         at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:476)
         at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:204)
         at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:540)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:924)
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1261)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1419)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3752)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3806)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(OraclePreparedStatementWrapper.java:1667)
         at weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:135)
         at net.sf.jasperreports.engine.query.JRJdbcQueryExecuter.createDatasource(JRJdbcQueryExecuter.java:222)
         ... 62 more
    Where TestReport is the name of the report...
    How can i solve this..
    Thanks
    gtg.

    from the error what i understud means.com.empAppln.view.*EmployeeRegister*
    this table is not exits in db. so throw error like this.
    table or view does not exist.and also,
    Stop filedownload if file is empty
    Edited by: ADF 7 on Jan 26, 2012 11:17 PM

Maybe you are looking for

  • Partner Application Definition

    I want to register a partner application to portal. (Oracle Exchange) I registered it as partner application and registered the web provider also. But clicking the link still dismisses me to the login page on the partner application side. What am I m

  • Redirecting from a JSP to an XML file

    I have an issue that I urgently need to sort out. I'm running a web application which uses EJB's for the back-end and JSP's for the front-end. I have a class that generates an xml file on the system containing client information. I create a String Ob

  • Itunes no source list under devices

    Trying to sync Outlook calader with Iphone, no source list, under devices no calander options.

  • Substring Function in formula builder of transfer rule

    Hi Gurus I want to get the domain name from Email address. For eg: if the email address is [email protected], i want to display only "yahoo.com" in the report. For that, shall i use Substring function in transfer rule. If so, please advice me how i c

  • Purchase details using serial number

    How can I find details about the vendor from which I bought my IMAC 2 years back using serial number?