Package it.eng.spagobi.kpi.config.dao

Examples of it.eng.spagobi.kpi.config.dao.IKpiInstPeriodDAO


      }


      // after inserted Kpi Instance insert periods
      // Load all the kpi inst period and the periodicity s well
      IKpiInstPeriodDAO kpiInstPeriodDao=DAOFactory.getKpiInstPeriodDAO();     
      List kpiInstPeriodList=kpiInstPeriodDao.loadKpiInstPeriodId(kpiInst.getKpiInstanceId());
      for (Iterator iterator = kpiInstPeriodList.iterator(); iterator.hasNext();) {
        KpiInstPeriod modKpiInst = (KpiInstPeriod) iterator.next();
        insertKpiInstancePeriod(modKpiInst, session);
      }
View Full Code Here

TOP

Related Classes of it.eng.spagobi.kpi.config.dao.IKpiInstPeriodDAO

Copyright © 2018 www.massapicom. 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.