Package com.ipc.oce.objects.reports

Examples of com.ipc.oce.objects.reports.OCReportManager.create()


   
    ReportProcessor rProc = app.getReportProcessor();
    OCReportManager manager = rProc.getReport("ДоходыРасходы");
   
   
    OCReportObject report = manager.create();
   
    OCDataCompositionSchema dataCompositionSchema = report.getDataCompositionSchema();
    for (OCDataCompositionSchemaDataSet object : dataCompositionSchema.getDataSets()) {
      System.out.println(object);
      System.out.println(object.getClass().getName());
View Full Code Here


  public void generateReport02() throws JIException, ParseException {
   
    ReportProcessor rProc = app.getReportProcessor();
    OCReportManager manager = rProc.getReport("КарточкаУчетаПоСтраховымВзносам");
   
    OCReportObject report = manager.create();
   
   
    OCDataCompositionSchema dataCompositionSchema = report.getDataCompositionSchema();
    for (OCDataCompositionSchemaDataSet object : dataCompositionSchema.getDataSets()) {
      System.out.println("==========================" + object.toString());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.