Jasperreports-help

olá pessoal , estou corrigindo uma aplicação com alguns relatorios em jasper reports ( nunca nem mechi com isso), porem algumas vezes qunado chamo esses relatorios eles carregam e outras apresenta o seguinte erro:

java.io.FileNotFoundException: o:\oracle\isuites\apache\apache\ProdAcumTipo.java (The requested operation cannot be performed on a file with a user-mapped section open) at java.io.FileOutputStream.open(Native Method) at java.io.FileOutputStream.(FileOutputStream.java, Compiled Code) at java.io.FileOutputStream.(FileOutputStream.java, Compiled Code) at java.io.FileOutputStream.(FileOutputStream.java, Compiled Code) at java.io.FileWriter.(FileWriter.java:43) at net.sf.jasperreports.engine.util.JRSaver.saveClassSource(JRSaver.java, Compiled Code) at net.sf.jasperreports.engine.design.JRAbstractClassCompiler.compileReport(JRAbstractClassCompiler.java, Compiled Code) at net.sf.jasperreports.engine.design.JRDefaultCompiler.compileReport(JRDefaultCompiler.java, Compiled Code) at net.sf.jasperreports.engine.JasperCompileManager.compileReport(JasperCompileManager.java, Compiled Code) at _rpr._RelatProdAcum03._jspService(_RelatProdAcum03.java, Compiled Code) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java, Compiled Code) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java, Compiled Code) at oracle.jsp.JspServlet.doDispatch(JspServlet.java, Compiled Code) at oracle.jsp.JspServlet.internalService(JspServlet.java, Compiled Code) at oracle.jsp.JspServlet.service(JspServlet.java, Compiled Code) at javax.servlet.http.HttpServlet.service(HttpServlet.java, Compiled Code) at org.apache.jserv.JServConnection.processRequest(JServConnection.java, Compiled Code) at org.apache.jserv.JServConnection.run(JServConnection.java, Compiled Code) at java.lang.Thread.run(Thread.java, Compiled Code) NESTED BY : net.sf.jasperreports.engine.JRException: Error saving expressions class file : o:\oracle\isuites\apache\apache\ProdAcumTipo.java at net.sf.jasperreports.engine.util.JRSaver.saveClassSource(JRSaver.java, Compiled Code) at net.sf.jasperreports.engine.design.JRAbstractClassCompiler.compileReport(JRAbstractClassCompiler.java, Compiled Code) at net.sf.jasperreports.engine.design.JRDefaultCompiler.compileReport(JRDefaultCompiler.java, Compiled Code) at net.sf.jasperreports.engine.JasperCompileManager.compileReport(JasperCompileManager.java, Compiled Code) at _rpr._RelatProdAcum03._jspService(_RelatProdAcum03.java, Compiled Code) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java, Compiled Code) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java, Compiled Code) at oracle.jsp.JspServlet.doDispatch(JspServlet.java, Compiled Code) at oracle.jsp.JspServlet.internalService(JspServlet.java, Compiled Code) at oracle.jsp.JspServlet.service(JspServlet.java, Compiled Code) at javax.servlet.http.HttpServlet.service(HttpServlet.java, Compiled Code) at org.apache.jserv.JServConnection.processRequest(JServConnection.java, Compiled Code) at org.apache.jserv.JServConnection.run(JServConnection.java, Compiled Code) at java.lang.Thread.run(Thread.java, Compiled Code) net.sf.jasperreports.engine.JRException: Error saving expressions class file : o:\oracle\isuites\apache\apache\ProdAcumTipo.java

gostaria de ajuda para entender o que esse erro que dizer o que esta acontecendo? é um problema na copilação? o q pode estar gerando esse problema?

Caramba… não precisava abrir 3 topicos.

Mas quanto a pergunta, parece que vc tem uma unidade mapeada como “O” e não ta encontrando a classe ProdAcumTipo.java

Confere pra ver se tem esse mapeamento.

é que eu preciso muito de ajuda ,esse diretorio existe mas não existe nenhum arquivo .java dentro dele, não sei como funciona essa aplicação mas parece que ela copila o arquivo e remove do diretorio

(código de um dos geradores de relatorio)

<%@ page contentType=“text/html; charset=iso-8859-1” language=“java” import=“net.sf.jasperreports.engine.export." errorPage="" %>
<%@ page contentType=“text/html; charset=iso-8859-1” language=“java” import="net.sf.jasperreports.engine.
” errorPage="" %>
<%@ page contentType=“text/html; charset=iso-8859-1” language=“java” import=“net.sf.jasperreports.engine.design." errorPage="" %>
<%@ page contentType=“text/html; charset=iso-8859-1” language=“java” import="net.sf.jasperreports.engine.xml.
” errorPage="" %>
<%@ page contentType=“text/html; charset=iso-8859-1” language=“java” import=“java.sql." errorPage="" %>
<%@ page contentType=“text/html; charset=iso-8859-1” language=“java” import="java.util.
” errorPage="" %>
<%@ page contentType=“text/html; charset=iso-8859-1” language=“java” import=“java.io." errorPage="" %>
<%@ page contentType=“text/html; charset=iso-8859-1” language=“java” import="com.sonopress.
” errorPage="" %>

<%@ include file=“Connections/Somis_rpr.jsp” %>
<%
// variáveis de testes:
String USER = (String)request.getParameter(“USER”);
String RELATORIO = (String)request.getParameter(“RELATORIO”);
String TITULO = (String)request.getParameter(“TITULO”);
String DATA_INI = (String)request.getParameter(“DATA_INI”);
String DATA_FIM = (String)request.getParameter(“DATA_FIM”);
String TIP_CD = (String)request.getParameter(“TIP_CD”);
String UNIDADE = (String)request.getParameter(“UNIDADE”);
String COMPL_NOME = USER+""+RELATORIO+""+TIP_CD+""+UNIDADE+""+MeuUtil.replaceAll(DATA_INI,"/","")+""+MeuUtil.replaceAll(DATA_FIM,"/","_");
String COD_MAQUINA = “0”;
if (request.getParameter(“COD_MAQUINA”)!=null) COD_MAQUINA = (String)request.getParameter(“COD_MAQUINA”);

%>
<%
String Recordset3__p_maq = “0”;
if (COD_MAQUINA !=null) {Recordset3__p_maq = (String)COD_MAQUINA;}
%>
<%
Driver DriverRecordset3 = (Driver)Class.forName(MM_Somis_rpr_DRIVER).newInstance();
Connection ConnRecordset3 = DriverManager.getConnection(MM_Somis_rpr_STRING,MM_Somis_rpr_USERNAME,MM_Somis_rpr_PASSWORD);
PreparedStatement StatementRecordset3 = ConnRecordset3.prepareStatement("select des_maquina, TIP_PRODUTO, COD_UNIDADE from rpr_maquinas where cod_maquina = " + Recordset3__p_maq + “”);
ResultSet Recordset3 = StatementRecordset3.executeQuery();
boolean Recordset3_isEmpty = !Recordset3.next();
boolean Recordset3_hasData = !Recordset3_isEmpty;
Object Recordset3_data;
int Recordset3_numRows = 0;
%>
<%
String STR_MAQUINA = “”;
if (Recordset3_hasData) {
STR_MAQUINA = Recordset3.getString(“DES_MAQUINA”);
TIP_CD = Recordset3.getString(“TIP_PRODUTO”);
UNIDADE = Recordset3.getString(“COD_UNIDADE”);
}
%>
<%
String GRUPO = “des_tipo”;
String ORDERBY = “tip_maquina”;
%>
<%
String Recordset1__p_user = “0”;
if (USER !=null) {Recordset1__p_user = (String)USER;}
%>
<%
String Recordset1__p_relat = “0”;
if (RELATORIO !=null) {Recordset1__p_relat = (String)RELATORIO;}
%>
<%
String Recordset1__p_grupo = “0”;
if (GRUPO !=null) {Recordset1__p_grupo = (String)GRUPO;}
%>
<%
String Recordset1__p_order = “0”;
if (ORDERBY !=null) {Recordset1__p_order = (String)ORDERBY;}
%>
<%
Driver DriverRecordset1 = (Driver)Class.forName(MM_Somis_rpr_DRIVER).newInstance();
Connection ConnRecordset1 = DriverManager.getConnection(MM_Somis_rpr_STRING,MM_Somis_rpr_USERNAME,MM_Somis_rpr_PASSWORD);
PreparedStatement StatementRecordset1 = ConnRecordset1.prepareStatement(“SELECT NOM_USUARIO, TIP_MAQUINA, DES_TIPO, " + Recordset1__p_grupo + " COD_GRUPO, COD_MAQUINA, DES_MAQUINA, QTD_BONS, QTD_REJEITADOS, PER_REJEICAO, QTD_MEDIADIA, QTD_TROCAS, QTD_MEDIAOP, NUM_CICLOAPU, NUM_CICLOCAL, QTD_HORASMAN, QTD_HORASTRO, QTD_HORASPRO, QTD_HORASEXT, QTD_INFORMADO, QTD_NAOINFORMADO, QTD_HORAAPLIC, NUM_DIAS FROM rpr_temp_relprod WHERE nom_usuario = '” + Recordset1__p_user + "’ and cod_relatorio = " + Recordset1__p_relat + " ORDER BY " + Recordset1__p_order + “, cod_maquina”);
ResultSet Recordset1 = StatementRecordset1.executeQuery();
boolean Recordset1_isEmpty = false;//!Recordset1.next();
boolean Recordset1_hasData = !Recordset1_isEmpty;
Object Recordset1_data;
int Recordset1_numRows = 0;
%>

Untitled Document <% try { System.setProperty("org.xml.sax.driver", "org.apache.xerces.parsers.SAXParser");
		JasperDesign design =  JRXmlLoader.load(dirname + "ProdAcumTipo.jrxml");
		JasperReport report = JasperCompileManager.compileReport(design);

		//ResultSet rs = getResultSet();
		
		JRDataSource dataSource = new JRResultSetDataSource(Recordset1);

		Map params = new java.util.HashMap();
String[] meses = {"Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"};
String data_str = DATA_INI.substring(0,2) + "/" + meses[Integer.parseInt(DATA_INI.substring(3,5))-1] + "/" + DATA_INI.substring(6,10);
if (!DATA_INI.equals(DATA_FIM)) data_str += " a " + DATA_FIM.substring(0,2) + "/" + meses[Integer.parseInt(DATA_FIM.substring(3,5))-1] + "/" + DATA_FIM.substring(6,10);
String par_str = TIP_CD + "/"  + UNIDADE;
if (!COD_MAQUINA.equals("0")) par_str = STR_MAQUINA;

		params.put("titulo", TITULO + " " + data_str + " (" + par_str + ")");
		params.put("excel", "Excel_"+COMPL_NOME+".xls");
		params.put("dir", dirname);
		params.put("TIPO", TIP_CD);

		JasperPrint print = JasperManager.fillReport(report, params, dataSource);
		JasperExportManager.exportReportToHtmlFile(print, dirname + "Relatorio_"+COMPL_NOME+".html");

		JRXlsExporter exporter = new JRXlsExporter();
		exporter.setParameter(JRExporterParameter.JASPER_PRINT, print);
		exporter.setParameter(JRExporterParameter.OUTPUT_FILE_NAME, dirname + "Excel_"+COMPL_NOME+".xls");
		exporter.setParameter(JRXlsExporterParameter.IS_ONE_PAGE_PER_SHEET, Boolean.FALSE);
		exporter.exportReport();
		%>

<% if (session.getValue(“intercompany”)!=null) { %>

<% } else { %>

<% } %>

<%

		//response.sendRedirect("./report/" + "Relatorio_"+COMPL_NOME+".html?DATA_INI=" + DATA_INI + "&DATA_FIM=" + DATA_FIM + "&USER=" + USER + "&TIP_CD=" + TIP_CD + "&UNIDADE=" + UNIDADE + "&RELATORIO=" + RELATORIO + "&TITULO=" + TITULO);
		//JasperExportManager.exportReportToPdfFile(print, dirname + "ProdAcumTipo.pdf");
		//JasperExportManager.exportReportToXmlFile(print, dirname + "ProdAcumTipo.xml", false);

	} catch (Exception ex) {
		ex.printStackTrace(new PrintWriter(out));
		out.println(ex.toString());
	}

%>

<% Recordset1.close(); StatementRecordset1.close(); ConnRecordset1.close(); %> <% Recordset3.close(); StatementRecordset3.close(); ConnRecordset3.close(); %>

codigo do arquivo .jrxml


<?xml version="1.0" encoding="UTF-8" ?>

































































































































































































































































































































































































































































continuação…

		<reportElement
					mode="Opaque"
					x="574"
					y="0"
					width="40"
					height="16"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="2Point" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="2Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Float"><![CDATA[new Float((float)Math.rint(100*$V{v12}.doubleValue())/100)]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0.00" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="614"
					y="0"
					width="46"
					height="16"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="2Point" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="Thin" rightBorderColor="#000000" bottomBorder="2Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Float"><![CDATA[new Float((float)Math.rint(100*$V{v13}.doubleValue())/100)]]></textFieldExpression>
			</textField>
			<staticText>
				<reportElement
					mode="Opaque"
					x="660"
					y="0"
					width="30"
					height="16"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText-1"
					stretchType="NoStretch"
					positionType="FixRelativeToTop"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="2Point" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="2Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[]]></text>
			</staticText>
		</band>
		</groupFooter>
	</group>
	<background>
		<band height="0"  isSplitAllowed="true" >
		</band>
	</background>
	<title>
		<band height="14"  isSplitAllowed="true" >
			<textField isStretchWithOverflow="false" pattern="" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="0"
					y="0"
					width="690"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.String"><![CDATA[$P{titulo}]]></textFieldExpression>
			</textField>
		</band>
	</title>
	<pageHeader>
		<band height="0"  isSplitAllowed="true" >
		</band>
	</pageHeader>
	<columnHeader>
		<band height="42"  isSplitAllowed="true" >
			<textField isStretchWithOverflow="false" pattern="" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="74"
					y="0"
					width="52"
					height="42"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Bottom" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.String"><![CDATA["Produção de " + $P{TIPO}.toString() + "'s Bons"]]></textFieldExpression>
			</textField>
			<staticText>
				<reportElement
					mode="Opaque"
					x="126"
					y="0"
					width="44"
					height="42"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Bottom" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Rejeição]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="170"
					y="0"
					width="36"
					height="42"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="Thin" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Bottom" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[% Rej]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="206"
					y="0"
					width="42"
					height="42"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Bottom" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Média Diária]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="248"
					y="0"
					width="34"
					height="42"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Bottom" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Qtde. Trocas]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="282"
					y="0"
					width="36"
					height="42"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="Thin" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Bottom" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Média p/ OP]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="318"
					y="0"
					width="60"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="Thin" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Ciclo]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="318"
					y="14"
					width="30"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Apur.]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="348"
					y="14"
					width="30"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="Thin" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Calc.]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="318"
					y="28"
					width="60"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="Thin" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[(segundos)]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="378"
					y="0"
					width="152"
					height="28"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Bottom" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Horas Paradas]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="378"
					y="28"
					width="38"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Manut]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="416"
					y="28"
					width="38"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Trocas]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="454"
					y="28"
					width="38"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Prod]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="492"
					y="28"
					width="38"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Ext]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="530"
					y="0"
					width="44"
					height="42"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Bottom" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Total Inform]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="574"
					y="0"
					width="40"
					height="42"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Bottom" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Não Inform]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="614"
					y="0"
					width="46"
					height="42"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="Thin" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Bottom" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Hora Aplic]]></text>
			</staticText>
			<staticText>
				<reportElement
					mode="Opaque"
					x="660"
					y="0"
					width="30"
					height="42"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="1Point" bottomBorderColor="#000000"/>
				<textElement textAlignment="Center" verticalAlignment="Bottom" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="true" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[Dias Trab.]]></text>
			</staticText>
			<image  scaleImage="FillFrame" vAlign="Top" hAlign="Left" isUsingCache="false" evaluationTime="Now" hyperlinkType="Reference"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="0"
					y="0"
					width="74"
					height="42"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="image-1"
					stretchType="NoStretch"
					positionType="FixRelativeToTop"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<graphicElement stretchType="NoStretch" pen="None" fill="Solid" />
				<imageExpression class="java.lang.String"><![CDATA[$P{dir}+"excel.gif"]]></imageExpression>					<hyperlinkReferenceExpression><![CDATA[$P{excel}]]></hyperlinkReferenceExpression>				</image>
		</band>
	</columnHeader>
	<detail>
		<band height="14"  isSplitAllowed="true" >
			<textField isStretchWithOverflow="false" pattern="" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="0"
					y="0"
					width="74"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.String"><![CDATA[$F{des_maquina}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="74"
					y="0"
					width="52"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Integer"><![CDATA[$F{qtd_bons}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="126"
					y="0"
					width="44"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Integer"><![CDATA[$F{qtd_rejeitados}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0.00" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="170"
					y="0"
					width="36"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="Thin" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Float"><![CDATA[$F{per_rejeicao}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="206"
					y="0"
					width="42"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Integer"><![CDATA[$F{qtd_mediadia}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="248"
					y="0"
					width="34"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Integer"><![CDATA[$F{qtd_trocas}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="282"
					y="0"
					width="36"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="Thin" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Integer"><![CDATA[$F{qtd_mediaop}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0.00" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="318"
					y="0"
					width="30"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Float"><![CDATA[$F{num_cicloapu}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0.00" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="348"
					y="0"
					width="30"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="Thin" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Float"><![CDATA[$F{num_ciclocal}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0.00" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="378"
					y="0"
					width="38"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Float"><![CDATA[$F{qtd_horasman}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0.00" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="416"
					y="0"
					width="38"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Float"><![CDATA[$F{qtd_horastro}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0.00" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="454"
					y="0"
					width="38"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Float"><![CDATA[$F{qtd_horaspro}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0.00" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="492"
					y="0"
					width="38"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Float"><![CDATA[$F{qtd_horasext}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0.00" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="530"
					y="0"
					width="44"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Float"><![CDATA[$F{qtd_informado}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0.00" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="574"
					y="0"
					width="40"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Float"><![CDATA[new Float((float)Math.rint(100*$F{qtd_naoinformado}.doubleValue())/100)]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="#,##0.00" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="614"
					y="0"
					width="46"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="Thin" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Float"><![CDATA[$F{qtd_horaaplic}]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="660"
					y="0"
					width="30"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="Thin" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Right" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.Integer"><![CDATA[$F{num_dias}]]></textFieldExpression>
			</textField>
		</band>
	</detail>
	<columnFooter>
		<band height="0"  isSplitAllowed="true" >
		</band>
	</columnFooter>
	<pageFooter>
		<band height="14"  isSplitAllowed="true" >
			<textField isStretchWithOverflow="false" pattern="dd/MM/yy HH:mm" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="574"
					y="0"
					width="116"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.util.Date"><![CDATA[new Date()]]></textFieldExpression>
			</textField>
			<textField isStretchWithOverflow="false" pattern="" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None"  hyperlinkTarget="Self" >
				<reportElement
					mode="Opaque"
					x="318"
					y="0"
					width="98"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="textField"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<textFieldExpression   class="java.lang.String"><![CDATA["Página " + $V{PAGE_NUMBER}.toString()]]></textFieldExpression>
			</textField>
			<staticText>
				<reportElement
					mode="Opaque"
					x="0"
					y="0"
					width="74"
					height="14"
					forecolor="#000000"
					backcolor="#FFFFFF"
					key="staticText"
					stretchType="NoStretch"
					positionType="Float"
					isPrintRepeatedValues="true"
					isRemoveLineWhenBlank="false"
					isPrintInFirstWholeBand="false"
					isPrintWhenDetailOverflows="false"/>
				<box topBorder="None" topBorderColor="#000000" leftBorder="None" leftBorderColor="#000000" rightBorder="None" rightBorderColor="#000000" bottomBorder="None" bottomBorderColor="#000000"/>
				<textElement textAlignment="Left" verticalAlignment="Top" rotation="None" lineSpacing="Single">
					<font fontName="Arial" pdfFontName="Helvetica" size="10" isBold="false" isItalic="false" isUnderline="false" isPdfEmbedded ="false" pdfEncoding ="Cp1252" isStrikeThrough="false" />
				</textElement>
			<text><![CDATA[SONOPRESS]]></text>
			</staticText>
		</band>
	</pageFooter>
	<summary>
		<band height="0"  isSplitAllowed="true" >
		</band>
	</summary>
_________________________________________________________________________________________-

não sei como funciona isso, pode me dar alguma ajuda?