Examples of insertKpiError()


Examples of it.eng.spagobi.kpi.config.dao.IKpiErrorDAO.insertKpiError()

      if(e instanceof DatasetException){
        logger.error("write exception in tabe kpiError ", e);
        IKpiErrorDAO dao= DAOFactory.getKpiErrorDAO();
        dao.setUserProfile(profile);
        dao.insertKpiError(
            (DatasetException)e,
            modInstNodeId,
            kVal.getR() != null ? kVal.getR().getName() : null );
      }
      else{
View Full Code Here

Examples of it.eng.spagobi.kpi.config.dao.IKpiErrorDAO.insertKpiError()

      logger.error("cjheck dataset "+datasetLabel+ " because no value field for kpi was found");
      MissingKpiValueException missingKpiValueException = new MissingKpiValueException("cjheck dataset "+datasetLabel+ " because no value field for kpi was found");     
     
      IKpiErrorDAO dao= DAOFactory.getKpiErrorDAO();
      dao.setUserProfile(profile);
      dao.insertKpiError(
          missingKpiValueException,
          modInstId,
          kpiVal.getR() != null ? kpiVal.getR().getName() : null );
    }
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.