Package it.eng.spagobi.engines.drivers.worksheet

Examples of it.eng.spagobi.engines.drivers.worksheet.WorksheetDriver


      }else if(smartFilterValues!=null){
        content = getSmartFilterTemplateContent();
      }else if(wk_definition!=null && query!=null && orig_obj!=null){
        ObjTemplate qbETemplate = orig_obj.getActiveTemplate();
        String templCont = new String(qbETemplate.getContent());
        WorksheetDriver q = new WorksheetDriver();
        String temp = q.composeWorksheetTemplate(wk_definition, query, null, templCont);
        content = temp.getBytes();
      }else{
        logger.error("Document template not available");
        throw new SpagoBIServiceException(SERVICE_NAME,  "sbi.document.saveError");
      }
View Full Code Here


    logger.debug("Smart filter values : " + smartFilterValues);
    ExecutionInstance executionInstance = getContext().getExecutionInstance( ExecutionInstance.class.getName() );
    BIObject biobj = executionInstance.getBIObject();
    ObjTemplate qbETemplate = biobj.getActiveTemplate();
    String templCont = new String(qbETemplate.getContent());
    WorksheetDriver q = new WorksheetDriver();
    String temp = q.composeWorksheetTemplate(wkDefinition, query, smartFilterValuesString, templCont);
    byte[] content = temp.getBytes();
    logger.debug("OUT");
    return content;
  }
View Full Code Here

    logger.debug("Smart filter values : " + smartFilterValues);
    ExecutionInstance executionInstance = getContext().getExecutionInstance( ExecutionInstance.class.getName() );
    BIObject biobj = executionInstance.getBIObject();
    ObjTemplate qbETemplate = biobj.getActiveTemplate();
    String templCont = new String(qbETemplate.getContent());
    WorksheetDriver q = new WorksheetDriver();
    String temp = q.composeWorksheetTemplate(wkDefinition, null, smartFilterValuesString, templCont);
    byte[] content = temp.getBytes();
    logger.debug("OUT");
    return content;
  }
View Full Code Here

TOP

Related Classes of it.eng.spagobi.engines.drivers.worksheet.WorksheetDriver

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.