JasperReports and creation of reports using JasperReports

Hi all!
I have a problem with developing Java code for printing reports, by using JasperReports tool.
I'm trying to create report by using next peace of code (you can found it also on http://ensode.net/jasperreports_intro.html)
package myReport;
import java.util.HashMap;
import net.sf.jasperreports.engine.JREmptyDataSource;
import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JasperCompileManager;
import net.sf.jasperreports.engine.JasperExportManager;
import net.sf.jasperreports.engine.JasperFillManager;
import net.sf.jasperreports.engine.JasperPrint;
import net.sf.jasperreports.engine.JasperReport;
public class Sample
  public static void main(String[] args)
    JasperReport jasperReport;
    JasperPrint jasperPrint;
    try
    jasperReport = JasperCompileManager.compileReport("c:\\report_1.jrxml");
    jasperPrint = JasperFillManager.fillReport(jasperReport, new HashMap(), new JREmptyDataSource());
    //JasperExportManager.exportReportToPdfFile(jasperPrint, "c:\\simple_report.pdf");
    catch (JRException e)
      e.printStackTrace();
}I'm getting the following error:
Exception in thread main
java.lang.NoClassDefFoundError: org.apache.commons.digester.SetNestedPropertiesRule
    at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:202)
    at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:167)
    at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:151)
    at net.sf.jasperreports.engine.JasperCompileManager.compileReport(JasperCompileManager.java:142)
    at myReport.Sample.main(Sample.java:20)BTW, file report_1.jrxml I created using iReport.
Can somebody help me how to solve this, and to create my report?
Thank you in advance!
Message was edited by:
proNick

hey
my problem is same as yours...
could you please guide me on how u solved it and please also tell me about your jsxml file.. Could u tell me how did u run ur jasper reports as i am a beginner...
**My java file which i am running in eclipse is**
package first;
import java.util.HashMap;
import net.sf.jasperreports.engine.JREmptyDataSource;
import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JasperCompileManager;
import net.sf.jasperreports.engine.JasperFillManager;
import net.sf.jasperreports.engine.JasperPrint;
import net.sf.jasperreports.engine.JasperReport;
public class JasperReportsIntro
     public static void main(String[] args)
          System.out.print("hello");
          JasperReport jasperReport;
          JasperPrint jasperPrint;
          try
               jasperReport = JasperCompileManager.compileReport("c:\\Simple_Report.jrxml");
               //jasperPrint = JasperFillManager.fillReport(jasperReport, new HashMap(), new JREmptyDataSource());
          catch (JRException e1)
               e1.printStackTrace();
and my jrxml file is+
<?xml version="1.0"?>
<!DOCTYPE jasperReport
PUBLIC "-//JasperReports//DTD Report Design//EN"
"http://jasperreports.sourceforge.net/dtds/jasperreport.dtd">
<jasperReport name="Simple_Report">
<detail>
<band height="20">
<staticText>
<reportElement x="180" y="0" width="200" height="20"/>
<text><![CDATA[Hello World!]]></text>
</staticText>
</band>
</detail>
</jasperReport>
thank you for ur help

Similar Messages

  • Creation of reports using JasperReports

    Hi all!
    I have a problem with developing Java code for printing reports, by using JasperReports tool.
    I'm trying to create report by using next peace of code (you can found it also on http://ensode.net/jasperreports_intro.html)
    package myReport;
    import java.util.HashMap;
    import net.sf.jasperreports.engine.JREmptyDataSource;
    import net.sf.jasperreports.engine.JRException;
    import net.sf.jasperreports.engine.JasperCompileManager;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    public class Sample
    public static void main(String[] args)
    JasperReport jasperReport;
    JasperPrint jasperPrint;
    try
    jasperReport = JasperCompileManager.compileReport("c:\\report_1.jrxml");
    jasperPrint = JasperFillManager.fillReport(jasperReport, new HashMap(), new JREmptyDataSource());
    //JasperExportManager.exportReportToPdfFile(jasperPrint, "c:\\simple_report.pdf");
    catch (JRException e)
    e.printStackTrace();
    I'm getting the following error:
    Exception in thread main
    java.lang.NoClassDefFoundError: org.apache.commons.digester.SetNestedPropertiesRule
    at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:202)
    at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:167)
    at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:151)
    at net.sf.jasperreports.engine.JasperCompileManager.compileReport(JasperCompileManager.java:142)
    at myReport.Sample.main(Sample.java:20)
    BTW, file report_1.jrxml I created using iReport.
    Can somebody help me how to solve this, and to create my report? Always, all the time with different examples I got same errors, I guess that I done somethiong wrong on in setup, or classpath, or something like that...
    Thank you in advance!

    dvohra09, first of all, thank you on your reply.
    But I still running round in circles...
    With following code (from JasperReports and Jdeveloper
    package myReport;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.HashMap;
    import java.util.Map;
    import net.sf.jasperreports.engine.JREmptyDataSource;
    import net.sf.jasperreports.engine.JRException;
    import net.sf.jasperreports.engine.JasperCompileManager;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.engine.design.JasperDesign;
    import net.sf.jasperreports.engine.xml.JRXmlLoader;
    public class Sample
    public static void main(String[] args)
    try
    InputStream input=new FileInputStream(new File("c:/jasperreports_demo.xml"));
    JasperDesign design = JRXmlLoader.load(input);
    catch (JRException e)
    ... I'm gettnig following error:
    C:\jdeveloper\jdk\bin\javaw.exe -ojvm -classpath C:\jdeveloper\jdev\mywork\Workspace3\Project1\classes;C:\jdeveloper\jlib\jasperreports-1.2.7.jar;C:\jdeveloper\jakarta-struts\lib\commons-beanutils.jar;C:\jdeveloper\jakarta-struts\lib\commons-collections.jar;C:\jdeveloper\jakarta-struts\lib\commons-digester.jar;C:\jdeveloper\jakarta-struts\lib\commons-logging.jar myReport.Sample
    Exception in thread main
    java.lang.NoClassDefFoundError: org.apache.commons.digester.SetNestedPropertiesRule
         at net.sf.jasperreports.engine.xml.JRXmlLoader.load(JRXmlLoader.java:202)
         at myReport.Sample.main(Sample.java:27)
    Process exited with exit code 1.
    Also, as you can see, my path is defined as:
    C:\jdeveloper\jlib\jasperreports-1.2.7.jar;C:\jdeveloper\jakarta-struts\lib\commons-beanutils.jar;C:\jdeveloper\jakarta-struts\lib\commons-collections.jar;C:\jdeveloper\jakarta-struts\lib\commons-digester.jar;C:\jdeveloper\jakarta-struts\lib\commons-logging.jar
    I'm developnig using JDeveloper 10g.
    Can you help more with this, please?
    10000x thanx in advance!

  • Create report using JasperReport

    I use JasperReport to create report. The jrxml file is created by using iReport. But when I run the program, it shows error:
    net.sf.jasperreports.engine.JRException: Error loading expression class
    Is there any can help me?
    Please help me, I need to do it in urgent.
    Can you suggest me other tools that I can use to create report in JSF portlet? Because I try many way with JasperReport but no success.
    Thank you very much.

    After going through sevaral forums looking for a solution to this problem here is what I figured
    - This problems is there for some time now.
    - No one seems to have identified the root cause for it or fail-safe solution
    - For some it went away by changing JVM for others it disappeared by changing JasperReports version
    For me, here is what I noticed. I compile the reports in each environment for same Java and JasperReports version
    - It appeared only on UNIX environment.
    - It is intermittent. out of 12 reports I have, one or the other fail in different environments (all on UNIX). There is no consistency and its not repeatable
    - For a moment, I thought the problem is resolved after I migrated JasperReports from 1.2.2 to 1.2.5. I wasn't so fortunate. There is still one report which fails to load.
    I know this information is not very useful, but I just wanted to share my frustration. I also wonder why this problem has not been addressed so far.

  • To find and open Crystal Reports using SI_Name & SI_PARENT_FOLDER

    Hi,
    I have been given the below properties and link, which uses Crystal Reports (I guess its using java integration)
    http://<portal server>/projectsportal/jsp/collaboration/deliverables/pdf_report.jsp?entity=1&Entity_Type=P&Key_Indicators=Y&LV_FROM_FY=&LV_TO_FY=
    The properties used are
    CMSName = 138.220.5.56:6400
    hostName= crystalprd
    authentication = secEnterprise
    #infoStoreQuery = SELECT * FROM CI_INFOOBJECTS WHERE ( SI_NAME = 'OrganizationReport' AND SI_PROGID = 'CrystalEnterprise.Report' AND SI_PARENT_FOLDER = 2000 )
    infoStoreQuery = SELECT * FROM CI_INFOOBJECTS WHERE ( SI_NAME = 'scorecard' AND SI_PROGID = 'CrystalEnterprise.Report' )
    I have to make few changes in the Crystal Reports.
    Please help me in finding out the report.  What is the location of the report ?
    Thanks in Advance for your timely help.
    Eswari.

    You have most of the info already here.  Just use Query Builder to pull back the rest of the object info and you'll have what you need.  I'm not sure which report you want, but either can be achieved in much of the same way.  You'll need to know the parent-child heirarchy for the folder structure to determine where this report sits.  once you have this info, open the CR designer and open the report from the repository navigating the folder heirarchy you found.
    1.  Open "Query Builder" from the start | programs menu on the server.  Depending on the version of XI you are using, the url will differ.
    2.  Execute a query similar to what you posted to bring back the info for the report object (not instances) with the name 'scorecard'. If multiple reports exist in different folders with the same name, they will all be returned.
    SELECT * FROM CI_INFOOBJECTS WHERE SI_NAME = 'scorecard' AND SI_PROGID = 'CrystalEnterprise.Report' and SI_INSTANCE = 0
    3.  Look for SI_PARENT_FOLDER attribute and query on this ID next.  That should give you the name of the parent folder the report sits within.
    SELECT * FROM CI_INFOOBJECTS WHERE SI_ID = <si_parent_folder>
    4.  You will need to keep querying for the parent in order to work your way up the folder tree.

  • Creation of report using Report Painter

    Dear All,
    I have a requirement to create a report using Report Painter. I don't have any idea about this.
    Could you pls provide me some study materials or Links to study Materials, it could of great help.
    Regards
    Ranjan

    report painter
    http://help.sap.com/saphelp_47x200/helpdata/en/da/6ada3889432f48e10000000a114084/frameset.htm
    <b>reward points if helpful</b>
    Message was edited by: Rahul Kavuri
    Message was edited by: Rahul Kavuri

  • Batch Job to Create and Send Excel Reports Using!!!

    Hello at all,
    i have a Report which is created by an Query.
    My question is, how can i know if this report have a batch-job in background or not??
    I want to know if their is existing any job for this report???
    OTHER QUESTION, is:
    Is it possible to create a job for a Query-Report that is sending email in background??

    Hi ETN_58,
    in transaction SM37 you can look for jobs for a specific report using field "ABAP program name".
    when you create a job in transaction SM36 you have a button for "Spool list recipient". Fill it out to distribute the spool generated by the jog to a distribution list or an email.
    regards,
    Edgar

  • SAP BO Report Scheduling and Save as report using Java SDK

    Hi All,
    We have a java product which is integrated with SAP BO using Java SDK and we have certain java screen through which we select report prompt values and webi report gets run.
    Now we want to give a functionality to save report to BO repository.
    When user select certain check box from java screen a separate copy of the webi report should get saved under default folder on BO repository.
    Also, we want user to choose the scheduling option from java screen only (and not the one which we use from BI Launchpad) due to certain access restriction. User does not have access to BI Launchpad. Only he can run report by selecting values through Java screen.
    If i need to create a separate screen for scheduling as well as saving webi report then also i am ok with it.
    P.S. i guess we need to work on Java SDK level. But could somebody please help me with the right direction?
    Let me know in case requirement is not clear.

    Hi Ketan,
    As you are on version BI 4.0 SP5 and would be migrating to BI 4.1, the best SDKs to use would be the Restful Webservices SDKs.
    You have the options to schedule a webi report with prompts as well as the save feature which you require.
    Please refer to the webi restful guides avialble at
    For BI 4.0 SP5
    http://help.sap.com/businessobject/product_guides/boexir4/en/xi4sp5_webi_restful_ws_en.pdf
    For BI 4.1 SP4
    http://help.sap.com/saphelpiis_sbo41sp4wi-sdk/frameset.htm
    Refer to the below blog to understand the Restfull Webservices SDKs.
    http://scn.sap.com/community/restful-sdk/blog/2013/09/07/scripting-web-intelligence-the-restful-raylight-web-services--learing-it
    More blogs on Rest are available at
    http://scn.sap.com/community/restful-sdk/content#filterID=contentstatus%5Bpublished%5D~objecttype~objecttype%5Bblogpost%5D
    You can find the samples from the below link
    http://scn.sap.com/community/restful-sdk/content#filterID=contentstatus%5Bpublished%5D~objecttype~objecttype%5Bdocument%5D
    You would need to refer to the community below in case you have concerns about Rest SDKs.
    http://scn.sap.com/community/restful-sdk
    Thanks,
    Prithvi

  • Retrieve All records and display in Report using CAML query in Report Builder if Parameter value is blank

    Hello Experts,
    i have created a report where i have one parameter field where user will pass parameter(e.g. EmpId). As per parameter record will fetched to report if no parameter is passed then it will display all records. I have done it by taking SqlServer Database as datasource.
    by using Following method
    Now i would like to do it by taking Sharepoint List as Datasource. For that what would be the CAML Query.
    Here is my existing CAML query.
    <RSSharePointList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <ListName>Employees</ListName>
      <ViewFields>
        <FieldRef Name="Title" />
        <FieldRef Name="FirstName" />
        <FieldRef Name="LastName" />
        <FieldRef Name="FullName" />
        <FieldRef Name="UserName" />
        <FieldRef Name="Company" />
      </ViewFields>
      <Query>
        <Where>  
    <Eq> 
        <FieldRef Name="Title" />
      <Value Type="Text">    
       <Parameter Name="EmployeeId"/>    
    </Value>
    </Eq>                  
        </Where>
      </Query>
    </RSSharePointList>
    The above code is working if i am passing an employeeId to Parameter. If nothing is passed, it is Not retrieving any record.
    Please suggest
    Thank you
    saroj
    saroj

    Your problem follows the well-established pattern of using an "All" parameter filter in SSRS. There are a few approaches depending on the size of your data. The easiest one is to return all data from CAML and then filter it within SSRS, the following thread
    provides some examples,
    http://stackoverflow.com/questions/18203317/show-all-records-some-records-based-on-parameter-value.
    Other options include passing all of the possible values within the CAML query when "All" is selected, using multiple Report Files to distinguish between both CAML queries, or to use multiple datasets with some logic to show/hide the correct one.
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Creation of report using more than 1 table

    Hi,
    We need to create a report pulling profit center data from GLPCT as well as cost center data from COSS & COSP. Is it possible to do this using report painter?
    Thanks & Regards,
    Sangeeta

    Hi,
    That's possible only if you define a special table, which will be extracted from these three. Report tables are defined via GRCT transaction. You will require the help of your BASIS team to do so.
    Regards,
    Eli

  • How to read a table and send a report using BPEL process?

    Hi Experts,
    I have a requirement to read list of records in few columns entered previous day from a particular table, prepare a xl report and send the xl file via email to users. Please advise.
    Thanks,
    Harisudhan Selvaraj

    Hi,
    Check this code.
    Here i creates context one node i.e  flights and attributes are from SFLIGHT table.
    DATA: lo_nd_flights TYPE REF TO if_wd_context_node,
            lo_el_flights TYPE REF TO if_wd_context_element,
            ls_flights TYPE if_main=>element_flights,
            it_flights type if_main=>elements_flights.
    navigate from <CONTEXT> to <FLIGHTS> via lead selection
      lo_nd_flights = wd_context->get_child_node( 'FLIGHTS' ).
    CALL METHOD LO_ND_FLIGHTS->GET_STATIC_ATTRIBUTES_TABLE
      IMPORTING
        TABLE  = it_flights.
    now the table data will be in internal table it_flights.

  • Errors generating reoprs using jasperReports in dwr

    I am generating reports using jasperReports in dwr .i am getting these errors
    Errors were encountered when compiling report expressions class file:
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:4: package net.sf.jasperreports.engine does not exist
    import net.sf.jasperreports.engine.*;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:5: package net.sf.jasperreports.engine.fill does not exist
    import net.sf.jasperreports.engine.fill.*;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:13: package net.sf.jasperreports.engine does not exist
    import net.sf.jasperreports.engine.*;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:15: package net.sf.jasperreports.engine.data does not exist
    import net.sf.jasperreports.engine.data.*;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:21: cannot find symbol
    symbol: class JREvaluator
    public class item_1195287830437_658743 extends JREvaluator
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:28: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    private JRFillParameter parameter_REPORT_LOCALE = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:29: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    private JRFillParameter parameter_REPORT_VIRTUALIZER = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:30: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    private JRFillParameter parameter_REPORT_TIME_ZONE = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:31: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    private JRFillParameter parameter_REPORT_MAX_COUNT = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:32: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    private JRFillParameter parameter_REPORT_SCRIPTLET = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:33: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    private JRFillParameter parameter_REPORT_PARAMETERS_MAP = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:34: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    private JRFillParameter parameter_REPORT_CONNECTION = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:35: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    private JRFillParameter parameter_REPORT_CLASS_LOADER = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:36: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    private JRFillParameter parameter_REPORT_URL_HANDLER_FACTORY = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:37: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    private JRFillParameter parameter_REPORT_RESOURCE_BUNDLE = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:38: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    private JRFillParameter parameter_REPORT_DATA_SOURCE = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:39: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    private JRFillParameter parameter_IS_IGNORE_PAGINATION = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:40: cannot find symbol
    symbol : class JRFillField
    location: class item_1195287830437_658743
    private JRFillField field_rate = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:41: cannot find symbol
    symbol : class JRFillField
    location: class item_1195287830437_658743
    private JRFillField field_item_id = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:42: cannot find symbol
    symbol : class JRFillField
    location: class item_1195287830437_658743
    private JRFillField field_name = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:43: cannot find symbol
    symbol : class JRFillField
    location: class item_1195287830437_658743
    private JRFillField field_manf_company = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:44: cannot find symbol
    symbol : class JRFillVariable
    location: class item_1195287830437_658743
    private JRFillVariable variable_PAGE_NUMBER = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:45: cannot find symbol
    symbol : class JRFillVariable
    location: class item_1195287830437_658743
    private JRFillVariable variable_COLUMN_NUMBER = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:46: cannot find symbol
    symbol : class JRFillVariable
    location: class item_1195287830437_658743
    private JRFillVariable variable_REPORT_COUNT = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:47: cannot find symbol
    symbol : class JRFillVariable
    location: class item_1195287830437_658743
    private JRFillVariable variable_PAGE_COUNT = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:48: cannot find symbol
    symbol : class JRFillVariable
    location: class item_1195287830437_658743
    private JRFillVariable variable_COLUMN_COUNT = null;
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:71: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    parameter_REPORT_LOCALE = (JRFillParameter)pm.get("REPORT_LOCALE");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:72: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    parameter_REPORT_VIRTUALIZER = (JRFillParameter)pm.get("REPORT_VIRTUALIZER");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:73: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    parameter_REPORT_TIME_ZONE = (JRFillParameter)pm.get("REPORT_TIME_ZONE");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:74: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    parameter_REPORT_MAX_COUNT = (JRFillParameter)pm.get("REPORT_MAX_COUNT");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:75: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    parameter_REPORT_SCRIPTLET = (JRFillParameter)pm.get("REPORT_SCRIPTLET");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:76: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    parameter_REPORT_PARAMETERS_MAP = (JRFillParameter)pm.get("REPORT_PARAMETERS_MAP");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:77: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    parameter_REPORT_CONNECTION = (JRFillParameter)pm.get("REPORT_CONNECTION");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:78: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    parameter_REPORT_CLASS_LOADER = (JRFillParameter)pm.get("REPORT_CLASS_LOADER");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:79: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    parameter_REPORT_URL_HANDLER_FACTORY = (JRFillParameter)pm.get("REPORT_URL_HANDLER_FACTORY");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:80: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    parameter_REPORT_RESOURCE_BUNDLE = (JRFillParameter)pm.get("REPORT_RESOURCE_BUNDLE");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:81: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    parameter_REPORT_DATA_SOURCE = (JRFillParameter)pm.get("REPORT_DATA_SOURCE");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:82: cannot find symbol
    symbol : class JRFillParameter
    location: class item_1195287830437_658743
    parameter_IS_IGNORE_PAGINATION = (JRFillParameter)pm.get("IS_IGNORE_PAGINATION");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:91: cannot find symbol
    symbol : class JRFillField
    location: class item_1195287830437_658743
    field_rate = (JRFillField)fm.get("rate");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:92: cannot find symbol
    symbol : class JRFillField
    location: class item_1195287830437_658743
    field_item_id = (JRFillField)fm.get("item_id");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:93: cannot find symbol
    symbol : class JRFillField
    location: class item_1195287830437_658743
    field_name = (JRFillField)fm.get("name");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:94: cannot find symbol
    symbol : class JRFillField
    location: class item_1195287830437_658743
    field_manf_company = (JRFillField)fm.get("manf_company");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:103: cannot find symbol
    symbol : class JRFillVariable
    location: class item_1195287830437_658743
    variable_PAGE_NUMBER = (JRFillVariable)vm.get("PAGE_NUMBER");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:104: cannot find symbol
    symbol : class JRFillVariable
    location: class item_1195287830437_658743
    variable_COLUMN_NUMBER = (JRFillVariable)vm.get("COLUMN_NUMBER");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:105: cannot find symbol
    symbol : class JRFillVariable
    location: class item_1195287830437_658743
    variable_REPORT_COUNT = (JRFillVariable)vm.get("REPORT_COUNT");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:106: cannot find symbol
    symbol : class JRFillVariable
    location: class item_1195287830437_658743
    variable_PAGE_COUNT = (JRFillVariable)vm.get("PAGE_COUNT");
    ^
    D:\Program Files\Apache Software Foundation\Tomcat 5.0\item_1195287830437_658743.java:107: cannot find symbol
    symbol : class JRFillVariable
    location: class item_1195287830437_658743
    variable_COLUMN_COUNT = (JRFillVariable)vm.get("COLUMN_COUNT");
    please help me this regard

    Hi Steven,
    The results of trying this generated the same DCOM error again at the early hours of this morning as it's always done.
    The exact error generated from the server is listed below:
    Event Type: Error
    Event Source: DCOM
    Event Category: None
    Event ID: 10016
    Date:  3/12/2014
    Time:  4:31:30 AM
    User:  NT AUTHORITY\NETWORK SERVICE
    Computer: HAL-SPS
    Description:
    The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID
    {61738644-F196-11D0-9953-00C04FD919C1}
     to the user NT AUTHORITY\NETWORK SERVICE SID (S-1-5-20).  This security permission can be modified using the Component Services administrative tool.
    For more information, see Help and Support Center at
    http://go.microsoft.com/fwlink/events.asp.
    Given this machine isn't on the domain and we have to log into it as local administrator, the local administrator account has been granted local launch and local activation permissions under IIS WAMREG admin on the server.
    Was this the correct account, or should I have granted permissions to another account?
    SB.

  • Error while trying to save a report using Java SDK for CR server 2011

    I use the java sdk to update the report database jndi alias and then save the report. While saving the report, the utility throws the following exception. It only happens to 3 reports out of more than 70 reports. What could be the problem with report that is causing this problem ?
    Thanks.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Failed to read data from report file C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\Data\CrystalRep
    ortsRasServer\temp\{56586260-E771-4C63-BF8B-F3CF14BB508A}.rpt. Reason: Repository object could not be found.---- Error code:-2147467259 [CRSDK00000000] Error code name:failed
            at com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(ReportSDKServerException.java:109)
            at com.crystaldecisions.proxy.remoteagent.ExceptionHelper.throwResultInfoException(ExceptionHelper.java:192)
            at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.sendSyncRequest(ReportClientDocument.java:803)
            at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.doSave(ReportClientDocument.java:820)
            at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.save(ReportClientDocument.java:2245)

    The error points to the report using a repository object that it cannot be found.  What happens if you try and update the reports using the Crystal Report Designer instead of the SDK?

  • Urgent......BALANCE SHEET AND P&L REPORT...........urgent

    Hi experts,
    I have to create the balance sheet report,for this i have to use datasource 0FI_GL_10 according to SAP but there is no data coming from R3 to this datasource , hence i am using 0FI_GL_6 ,for GL transaction data.
      for GL line item data i am using 0FI_GL_4.
       Is it possible to create Balance sheet and P&L reports using these datasources?
      <b>How can i create Balance sheet and P&L report based on these datasources.</b>
    In Business Content there are virtual cubes 0FIGL_VC1 and 0FIGL_VC2 how can i use these cubes as i am not using standard basic cubes 0FIGL_C10 AND 0FIGL_C01 and i am also not using the datasource 0FI_GL_10.
    I need this very urgently to get this report.
    regrds.
    Message was edited by:
            man man

    http://help.sap.com/saphelp_nw04/helpdata/en/57/dd153c4eb5d82ce10000000a114084/frameset.htm
    Steps-1)Load 0FI_GL_C10 cube from R/3
    2)R-Click cube 0FI_GL_R10 and select option "Activate direct access" since its remote cube as otherwise you wont be able to receive data in to this cube
    After loading 0FIGL_C10 goto 0FI_GL_V11 to check if you see data in this cube and then start building queries .
    No physical loading of data in 0FI_GL_R10 and 0FI_GL_V11 cube as its Remote cube and Virtual cube.
    I followed these steps. According to your datasources try following these steps and make sure you create a Virtual cube. The above link shows the standard query for Balance P&L. I have done for 0FI_GL_1 datasource. For this infosource i created standard cube and virtual cube. I guess in virtual cube you should get the data 0GL_ACCOUNT,  Key figues 0VAL_FLOW & 0VAL_STOCK . Please go through the below link for more information regarding these objects.
    Re: 0GLACCEXT vs 0GL_ACCOUNT - How it is USED?
    Regards
    Naga

  • Connect Crystal reports using SAP BW 3.X

    Hi,
    Help me in Crystal reports with BW :
    We are  using  Sap Ecc 6.0 and BW 3.x. I want create BW queries in Crystal Reports.
    1. which Crystal reports versions are supported. ( I have crystal reports 6.0 )
    2. Send me the procedure to connect and create crystal reports .
    3. any FM is there to connect and display Crystal reports using ABAP like ALV .
    Thanks in advance.
    Regards,

    BusinessObjects and SAP - Overview
    /people/ingo.hilgefort/blog/2008/02/07/businessobjects-and-sap-part-i
    Crystal Reports and BI Queries
    /people/ingo.hilgefort/blog/2008/02/19/businessobjects-and-sap-part-2
    Crystal Reports and BI Hierarchies
    /people/ingo.hilgefort/blog/2008/02/27/businessobjects-and-sap-part-3
    Crystal Reports and SAP R/3`
    /people/ingo.hilgefort/blog/2008/03/23/businessobjects-and-sap-part-4
    Getting started
    https://www.sdn.sap.com/irj/boc/business-objects-for-sap?rid=/webcontent/uuid/20f83c7e-3f2a-2c10-7dbf-a5ec14611a1e [original link is broken]
    Software / Installation
    https://www.sdn.sap.com/irj/boc/business-objects-for-sap?rid=/webcontent/uuid/a02d2792-452a-2c10-7c8f-ddd50dad779b [original link is broken]
    Content Library
    https://www.sdn.sap.com/irj/boc/business-objects-for-sap?rid=/webcontent/uuid/70041b55-b52a-2c10-87a3-e4fa3c3acdaa [original link is broken]
    Ingo

  • Crrystal Reports using ADO.  How do you Change the Isolation Level?

    Post Author: jmetaxas
    CA Forum: Data Connectivity and SQL
    Crrystal Reports using ADO.  How do you Change the Isolation Level?  I found a knowledge base article that allows you to change it for ODBC.   But nothing on ADO.  I kicked around changing the reports to ODBC but even then the keys described in the article do no exist.  Any suggestions?
    Thanks,
    John Metaxas

    T-Bob wrote:
    I want to make sure that points 2&3 are at the same level, so I can just move the envelope region between them up and down to change the volume. Any quick way to do this to speed up my process?
    Specifically to address this point: if you mouse over the audio levels' rubber band segment BETWEEN your points 2) and 3) until the cursor changes to an up/down adjustment arrow ⬍, and move it up/down, it will adjust BOTH the levels at 2) and 3), maintaining the relative difference between them (or, if points 2) and 3) start at the same level, this adjustment will keep them equal as you drag them both up/down together in one action.)
    As usual, much easier to DO it, rather than describe it!

Maybe you are looking for

  • When I cllick on my device(ipod) in itunes, i do not get any menu items.  I am trying to sync my ipod.  It says it is synching but doesn't.

    Using Windows 8, recently installed Itunes 11.  Just tried to download a cd and synch it to Ipod and it doesn't work.  I clicked on my device (ipod) in Itunes and didn't get any menu choices.  How do I synch music from itunes to ipod?  Also, music pu

  • Essbase parent level aggregation business rule for end users

    Can someone provide me the basic syntax of a business rule to allow end users within Planning to run a run time prompt business to aggregate their responsibility level within a dimension like Cost Center? So for example, I want to allow a cost center

  • How to turn off standard warning?

    Hi, I am hitting the warning below when I hit Check and Send button for one of the MSS service. "Event to start workflow for vacancy administration not triggered." I can actually continue to submit and complete the request without any issue. But I wo

  • To Update rows in Table in OA Framework

    Hi All, I have one requirement to update the table. For the first time when User opens the form, nothing is stored in database for the user id. He opens the form and enter 5 rows and click on save button.So 5 rows get inserted in database. Each recor

  • Jes Deinterlacer: when to use it?

    I saw a tutorial movie on YTube about slow motion in FCPX. In this movie JES interlacer is used before Retime - Optical flow. But I saw I can get same result (maybe not just the same?...) directly using Retime in FCPX. Any advice?