Examples of OCReportManager


Examples of com.ipc.oce.objects.reports.OCReportManager

    return ct;
  }
 
  public OCReportManager getReport(String reportName) throws JIException{
    OCReportCollection collection = new OCReportCollection(app.get("Reports"));
    OCReportManager manager = collection.getReport(reportName);
    return manager;
  }
View Full Code Here

Examples of com.ipc.oce.objects.reports.OCReportManager

   
    OCStructure structure = app.newStructure();
    structure.insert("ТаблицаДанных", table);
   
    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

Examples of com.ipc.oce.objects.reports.OCReportManager

  @Ignore
  @Test
  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.