/build/static/layout/Breadcrumb_cap_w.png

Script Results report

I need a sql query that finds the script of a specific name(we can say "testscript" for now) and then gets the computer name and the computer discription that "testscipt" ran on. I only want the comptuters that "testscript" ran on. below is what i have so far that i got from Kace support. it would be even better if i could add a custom inventory field to it as well.




Select K.NAME,
CASE
WHEN KL.STATUS IN (1,2)
THEN 'SUCCESS'
WHEN KL.STATUS IN (3.4)
THEN 'FAILURE'
ELSE
'UNKNOWN'
END AS STATUS,
START_TIME AS SCRIPT_RUN, M.NAME
FROM KBOT_LOG KL
INNER JOIN KBOT K ON
K.ID = KL.KBOT_ID AND K.TYPE != 'SYSTEM'
INNER JOIN MACHINE M ON
M.ID = KL.MACHINE_ID
order by 1,2,3,4



thanks in advanced!

0 Comments   [ + ] Show comments

Answers (31)

Posted by: dchristian 12 years ago
Red Belt
4
Something like this?
SELECT K.NAME,
CASE
WHEN KL.STATUS IN ( 1, 2 ) THEN 'SUCCESS'
WHEN KL.STATUS IN ( 3.4 ) THEN 'FAILURE'
ELSE 'UNKNOWN'
END AS STATUS,
START_TIME AS SCRIPT_RUN,
M.NAME
FROM KBOT_LOG KL
INNER JOIN KBOT K
ON K.ID = KL.KBOT_ID
AND K.TYPE != 'SYSTEM'
INNER JOIN MACHINE M
ON M.ID = KL.MACHINE_ID
WHERE K.NAME = 'TestScript'
ORDER BY 1,
2,
3,
4


What fields where you looking to add?
Posted by: dchristian 12 years ago
Red Belt
2
What happens when u run this?

SELECT K.NAME,
CASE
WHEN KL.STATUS IN ( 1, 2 ) THEN 'SUCCESS'
WHEN KL.STATUS IN ( 3.4 ) THEN 'FAILURE'
ELSE 'UNKNOWN'
END AS STATUS,
START_TIME AS SCRIPT_RUN,
M.NAME,
MCI.STR_FIELD_VALUE AS CUSTOM_FIELD
FROM KBOT_LOG KL
INNER JOIN KBOT K
ON K.ID = KL.KBOT_ID
AND K.TYPE != 'SYSTEM'
INNER JOIN MACHINE M
ON M.ID = KL.MACHINE_ID
INNER JOIN MACHINE_CUSTOM_INVENTORY MCI
ON M.ID = MCI.ID
WHERE K.NAME = 'TESTSCRIPT'
ORDER BY 1,
2,
3,
4
Posted by: dchristian 12 years ago
Red Belt
1
hmm.... (Scratches head)

Does this give results?
SELECT K.NAME,
CASE
WHEN KL.STATUS IN ( 1, 2 ) THEN 'SUCCESS'
WHEN KL.STATUS IN ( 3.4 ) THEN 'FAILURE'
ELSE 'UNKNOWN'
END AS STATUS,
START_TIME AS SCRIPT_RUN,
M.NAME,
MCI.STR_FIELD_VALUE AS CUSTOM_FIELD
FROM KBOT_LOG KL
INNER JOIN KBOT K
ON K.ID = KL.KBOT_ID
AND K.TYPE != 'SYSTEM'
INNER JOIN MACHINE M
ON M.ID = KL.MACHINE_ID
LEFT JOIN MACHINE_CUSTOM_INVENTORY MCI
ON M.ID = MCI.ID
/* WHERE K.NAME = 'TESTSCRIPT' */
ORDER BY 1,
2,
3,
4
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
Thank you so much for the quick reply. i do need to add a custom inventory field to it. i have the query for it but dont know how to combine it. the query is below.


SELECT (SELECT MACHINE_CUSTOM_INVENTORY.STR_FIELD_VALUE FROM MACHINE_CUSTOM_INVENTORY WHERE MACHINE_CUSTOM_INVENTORY.ID=MACHINE.ID AND MACHINE_CUSTOM_INVENTORY.SOFTWARE_ID=70888) AS MACHINE_CUSTOM_INVENTORY_0_70888 FROM MACHINE
Posted by: dchristian 12 years ago
Red Belt
0
SELECT K.NAME,
CASE
WHEN KL.STATUS IN ( 1, 2 ) THEN 'SUCCESS'
WHEN KL.STATUS IN ( 3.4 ) THEN 'FAILURE'
ELSE 'UNKNOWN'
END AS STATUS,
START_TIME AS SCRIPT_RUN,
M.NAME,
MCI.STR_FIELD_VALUE AS CUSTOM_FIELD
FROM KBOT_LOG KL
INNER JOIN KBOT K
ON K.ID = KL.KBOT_ID
AND K.TYPE != 'SYSTEM'
INNER JOIN MACHINE M
ON M.ID = KL.MACHINE_ID
INNER JOIN MACHINE_CUSTOM_INVENTORY MCI
ON M.ID = MCI.ID
WHERE K.NAME = 'TESTSCRIPT'
AND MCI.SOFTWARE_ID = 70888
ORDER BY 1,
2,
3,
4
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
that give no results.
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
i need that as a column if possible.
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
nothing
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
It is now working. Thanks so much.
Posted by: GillySpy 12 years ago
7th Degree Black Belt
0
If that last query works then it begs the question: why do you want the custom field if there is no data in it? Are you looking to do something in future with it?

If you are able perhaps you could post your sample output so future readers could see if this is something they would want?
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
Ok, what had happened was your second post fixed my report. the one machine that i had ran the query for did not have the custom field because it was 64bit and the custom field was only for 32 bit. I added another custom field that worked for 64 bit and now it shows the field.
Posted by: sfigg 12 years ago
Red Belt
0
Guys - I need this same SQL script to run (minus the custom field). So, I've used this - but when I hit "preview", I'm getting a "caught invalid xml string" error. Any ideas? (I'm creating this from classic reports SQL)


Select 'SMART Notebook Shortcuts',
CASE
WHEN KL.STATUS IN (1,2)
THEN 'SUCCESS'
WHEN KL.STATUS IN (3.4)
THEN 'FAILURE'
ELSE
'UNKNOWN'
END AS STATUS,
START_TIME AS SCRIPT_RUN, M.NAME
FROM KBOT_LOG KL
INNER JOIN KBOT K ON
K.ID = KL.KBOT_ID AND K.TYPE != 'SYSTEM'
INNER JOIN MACHINE M ON
M.ID = KL.MACHINE_ID
order by 1,2,3,4
Posted by: sfigg 12 years ago
Red Belt
0
Actually, I just ran that script and generated a PDF - it literally shot out 2000 pages of reports. It's like every check-in or something - seconds apart. We have only ran this script on a about 200 machines as "run now".

Any ideas?
Posted by: dchristian 12 years ago
Red Belt
0
You need to filter on a script.

Right now it looks like your returning the results from all the scripts.
Posted by: sfigg 12 years ago
Red Belt
0
What exactly do I need to put in to run reports on specific scripts? I'm a noob when it comes to SQL Queries, but if I just need to edit one or two lines with script name/info, it shouldn't be hard. My script name is "SMART Notebook Shortcuts"
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
try this


SELECT K.NAME,
CASE
WHEN KL.STATUS IN ( 1, 2 ) THEN 'SUCCESS'
WHEN KL.STATUS IN ( 3.4 ) THEN 'FAILURE'
ELSE 'UNKNOWN'
END AS STATUS,
START_TIME AS SCRIPT_RUN,
M.NAME
FROM KBOT_LOG KL
INNER JOIN KBOT K
ON K.ID = KL.KBOT_ID
AND K.TYPE != 'SYSTEM'
INNER JOIN MACHINE M
ON M.ID = KL.MACHINE_ID
WHERE K.NAME = 'SMART Notebook Shortcuts'
ORDER BY 1,
2,
3,
4
Posted by: sfigg 12 years ago
Red Belt
0
Tried that instead, and got this:

Error Running Report

Exception while running report. Unknown column name : SMART Notebook Shortcuts
Posted by: dchristian 12 years ago
Red Belt
0
sfigg,

Can you delete the script and try again.

The SQL from mramsdell should work as long as you script name is "SMART Notebook Shortcuts"
Posted by: sfigg 12 years ago
Red Belt
0
I deleted the report, then made a new classic SQL report. I copied it into the SQL field again, and this is what I got when I saved it and clicked PDF (am I doing that right? this is my first report I've run this way):


Error Running Report

Exception while running report. net.sf.jasperreports.engine.JRException: Duplicate declaration of field : NAME
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
have you tried running this under just reports and not classic reports? it does not have PDF but you can do HTML.
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
Looks like you need to create an alias because it uses "name" twice. Try this.


SELECT K.NAME,
CASE
WHEN KL.STATUS IN ( 1, 2 ) THEN 'SUCCESS'
WHEN KL.STATUS IN ( 3.4 ) THEN 'FAILURE'
ELSE 'UNKNOWN'
END AS STATUS,
START_TIME AS SCRIPT_RUN,
M.NAME MACHINE_NAME
FROM KBOT_LOG KL
INNER JOIN KBOT K
ON K.ID = KL.KBOT_ID
AND K.TYPE != 'SYSTEM'
INNER JOIN MACHINE M
ON M.ID = KL.MACHINE_ID
WHERE K.NAME = 'SMART Notebook Shortcuts'
ORDER BY 1,
2,
3,
4
Posted by: sfigg 12 years ago
Red Belt
0
Seems to work as a regular report instead of classic! Thanks!

Now just to find some other cool custom SQL reports to run :)
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
the report above will work in classic if you need PDF.
Posted by: sfigg 12 years ago
Red Belt
0
It's not working for me under classic reporting but works under regular reports.
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
is it still giving you the same error?
Posted by: sfigg 12 years ago
Red Belt
0
Yes, it is. Regular reports works fine - but a PDF would be nice so that I could email it to people.
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
does it work when you preview? If it does, are the fields correct?
Posted by: sfigg 12 years ago
Red Belt
0
Doesn't work when I hit preview either. I'm just copying the same script from above - which works in regular reports but just not custom. I'm not big on SQL, so I apologize for not being able to really troubleshoot further than what we're kind of already listed here.

Preview shows "caught invalid xml string"
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
can you post the XML Report Layout? maybe i can compare it to mine and find the issue.
Posted by: sfigg 12 years ago
Red Belt
0
Sure. Here you go (not the smart notebook script - a different one which we're using today)

<?xml version="1.0" encoding="UTF-8" ?>
<!-- Created with iReport - A designer for JasperReports -->
<!DOCTYPE jasperReport PUBLIC "//JasperReports//DTD Report Design//EN" "http://jasperreports.sourceforge.net/dtds/jasperreport.dtd">
<jasperReport
name="landscape"
columnCount="1"
printOrder="Vertical"
orientation="Portrait"
pageWidth="842"
pageHeight="595"
columnWidth="782"
columnSpacing="0"
leftMargin="30"
rightMargin="30"
topMargin="20"
bottomMargin="20"
whenNoDataType="AllSectionsNoDetail"
isTitleNewPage="false"
isSummaryNewPage="false">
<property name="ireport.scriptlethandling" value="0" />
<property name="ireport.encoding" value="UTF-8" />
<import value="java.util.*" />
<import value="net.sf.jasperreports.engine.*" />
<import value="net.sf.jasperreports.engine.data.*" />
<style
name="GroupLabel"
mode="Transparent"
fontName="Arial"
fontSize="10"
forecolor="#FFFFFF"
isBold="true"
isItalic="false"
isUnderline="false"
isStrikeThrough="false"
pdfFontName="Helvetica"
isPdfEmbedded="false"
/>
<style
name="GroupHeader"
mode="Transparent"
fontName="Arial"
fontSize="10"
forecolor="#FFFFFF"
isBold="true"
isItalic="false"
isUnderline="false"
isStrikeThrough="false"
pdfFontName="Helvetica"
isPdfEmbedded="false">
<box leftPadding="3"></box>
</style>
<style
name="GroupFooter"
mode="Transparent"
fontName="Arial"
fontSize="10"
forecolor="#e5e5e5"
backcolor="#e5e5e5"
isBold="true"
isItalic="false"
isUnderline="false"
isStrikeThrough="false"
pdfFontName="Helvetica"
isPdfEmbedded="false">
<box leftPadding="3"></box>
</style>
<style
name="ColumnHeaderFooter"
mode="Transparent"
isDefault="false"
fontName="Arial"
fontSize="10"
forecolor="#FFFFFF"
isBold="true"
isItalic="false"
isUnderline="false"
isStrikeThrough="false"
pdfFontName="Helvetica"
isPdfEmbedded="false">
<box leftPadding="3"></box>
</style>
<style
name="ColumnHeaderPanel"
isDefault="false"
mode="Opaque"
forecolor="#FFFFFF"
backcolor="#006699"
fill="Solid"
fontName="Arial"
fontSize="10"
isBold="false"
isItalic="false"
isUnderline="false"
isStrikeThrough="false"
pdfFontName="Helvetica"
isPdfEmbedded="false"
/>
<style
name="GroupHeaderPanel"
isDefault="false"
mode="Opaque"
forecolor="#FFFFFF"
backcolor="#999999"
fill="Solid"
fontName="Arial"
fontSize="10"
isBold="false"
isItalic="false"
isUnderline="false"
isStrikeThrough="false"
pdfFontName="Helvetica"
isPdfEmbedded="false"
/>
<style
name="ReportHeader"
mode="Transparent"
forecolor="#000000"
isDefault="false"
fontName="Arial"
fontSize="16"
isBold="true"
isItalic="false"
isUnderline="false"
isStrikeThrough="false"
pdfFontName="Helvetica"
isPdfEmbedded="false">
<box></box>
</style>
<style
name="Detail"
mode="Transparent"
forecolor="#000000"
isDefault="false"
fontName="Arial"
fontSize="8"
isBold="false"
isItalic="false"
isUnderline="false"
isStrikeThrough="false"
pdfFontName="Helvetica"
isPdfEmbedded="false">
<box></box>
</style>
<style
name="detail_small"
isDefault="false"
fontName="Arial"
fontSize="8"
isBold="false"
isItalic="false"
isUnderline="false"
isStrikeThrough="false"
pdfFontName="Helvetica"
isPdfEmbedded="false"
/>
<style
name="detail_large"
isDefault="false"
fontName="Arial"
fontSize= "10"
isBold="false"
isItalic="false"
isUnderline="false"
isStrikeThrough="false"
pdfFontName="Helvetica"
isPdfEmbedded="false"
/>
<style
name="columnLabel"
isDefault="false"
forecolor="#000000"
fontName="Arial"
fontSize="10"
isBold="true"
isItalic="false"
isUnderline="false"
isStrikeThrough="false"
pdfFontName="Helvetica-Bold"
isPdfEmbedded="false"
/>

<queryString><![CDATA[SELECT K.NAME,
CASE
WHEN KL.STATUS IN ( 1, 2 ) THEN 'SUCCESS'
WHEN KL.STATUS IN ( 3.4 ) THEN 'FAILURE'
ELSE 'UNKNOWN'
END AS STATUS,
START_TIME AS SCRIPT_RUN,
M.NAME
FROM KBOT_LOG KL
INNER JOIN KBOT K
ON K.ID = KL.KBOT_ID
AND K.TYPE != 'SYSTEM'
INNER JOIN MACHINE M
ON M.ID = KL.MACHINE_ID
WHERE K.NAME = 'CoWriter 6.0 [Silent]'
ORDER BY 1,
2,
3,
4]]></queryString>


<field name="NAME" class="java.lang.String"/>
<field name="STATUS" class="java.lang.String"/>
<field name="SCRIPT_RUN" class="java.sql.Timestamp"/>
<field name="NAME" class="java.lang.String"/>





<background>
<band height="0" >
</band>
</background>

<title>
<band height="100" >
<line direction="TopDown">
<reportElement
x="0"
y="98"
width="781"
height="0"
forecolor="#808080"
key="line"/>
<graphicElement stretchType="NoStretch">
<pen lineWidth="2.0" lineStyle="Solid"/>
</graphicElement>
</line>
<line direction="TopDown">
<reportElement
x="0"
y="3"
width="781"
height="0"
forecolor="#808080"
key="line"/>
<graphicElement stretchType="NoStretch">
<pen lineWidth="2.0" lineStyle="Solid"/>
</graphicElement>
</line>
<staticText>
<reportElement
style="ReportHeader"
x="99"
y="5"
width="465"
height="27"
key="staticText-1"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<text><![CDATA[CoWriter 6 [Silent]]]></text>
</staticText>

<textField isStretchWithOverflow="false" pattern="'Generated :' EEEEE dd MMMMM yyyy 'at' HH:mm:ss" isBlankWhenNull="true" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self" >
<reportElement
style="detail_large"
x="99"
y="38"
width="465"
height="20"
key="staticText-1"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textFieldExpression class="java.util.Date"><![CDATA[new Date()]]></textFieldExpression>
</textField>

<staticText>
<reportElement
style="detail_large"
x="99"
y="58"
width="465"
height="20"
key="staticText-4"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<text><![CDATA[Category :]]></text>
</staticText>

<staticText>
<reportElement
style="detail_large"
x="3"
y="78"
width="777"
height="20"
key="staticText-5"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<text><![CDATA[Description:]]></text>
</staticText>

<image evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self" >
<reportElement
x="3"
y="5"
width="85"
height="30"
key="image-1"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<graphicElement stretchType="NoStretch"/>
<imageExpression class="java.lang.String"><![CDATA["/kbox/kboxwww//adminui/reports/KBOX_logo.jpg"]]></imageExpression>
</image>
</band>
</title>

<pageHeader>
<band height="0" >
</band>
</pageHeader>

<columnHeader>
<band height="20" >
<frame>
<reportElement
style="ColumnHeaderPanel"
mode="Opaque"
x="0"
y="0"
width="782"
height="20"
key="frame-2"/>

<line direction="BottomUp">
<reportElement
x="0"
y="0"
width="782"
height="0"
forecolor="#000000"
key="line"/>
<graphicElement stretchType="NoStretch">
<pen lineWidth="0.25" lineStyle="Solid"/>
</graphicElement>
</line>

<line direction="BottomUp">
<reportElement
x="0"
y="19"
width="782"
height="0"
forecolor="#000000"
key="line"/>
<graphicElement stretchType="NoStretch">
<pen lineWidth="0.25" lineStyle="Solid"/>
</graphicElement>
</line>


<staticText>
<reportElement
style="ColumnHeaderFooter"
x="0"
y="0"
width="50"
height="15"
key="staticText "/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left">
<font pdfEncoding ="Cp1250" />
</textElement>
<text><![CDATA[#]]></text>
</staticText> <staticText>
<reportElement
style="ColumnHeaderFooter"
x="50"
y="0"
width="183"
height="15"
key="staticText "/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left">
<font pdfEncoding ="Cp1250" />
</textElement>
<text><![CDATA[NAME]]></text>
</staticText> <staticText>
<reportElement
style="ColumnHeaderFooter"
x="233"
y="0"
width="183"
height="15"
key="staticText "/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left">
<font pdfEncoding ="Cp1250" />
</textElement>
<text><![CDATA[STATUS]]></text>
</staticText> <staticText>
<reportElement
style="ColumnHeaderFooter"
x="416"
y="0"
width="183"
height="15"
key="staticText "/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left">
<font pdfEncoding ="Cp1250" />
</textElement>
<text><![CDATA[SCRIPT_RUN]]></text>
</staticText> <staticText>
<reportElement
style="ColumnHeaderFooter"
x="599"
y="0"
width="183"
height="15"
key="staticText "/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left">
<font pdfEncoding ="Cp1250" />
</textElement>
<text><![CDATA[NAME]]></text>
</staticText>
</frame>
</band>
</columnHeader>

<detail>
<band height="17" >
<line direction="TopDown">
<reportElement
x="0"
y="0"
width="782"
height="0"
forecolor="#808080"
backcolor="#FFFFFF"
key="line"/>
<graphicElement stretchType="NoStretch"/>
</line>

<textField isStretchWithOverflow="true" pattern="" isBlankWhenNull="true" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self" >
<reportElement
style="Detail"
x="0"
y="0"
width="50"
height="15"
key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textFieldExpression class="java.lang.String"><![CDATA[String.valueOf($V{REPORT_COUNT})]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="" isBlankWhenNull="true" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self" >
<reportElement
style="Detail"
x="50"
y="0"
width="183"
height="15"
key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textFieldExpression class="java.lang.String"><![CDATA[$F{NAME}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="" isBlankWhenNull="true" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self" >
<reportElement
style="Detail"
x="233"
y="0"
width="183"
height="15"
key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textFieldExpression class="java.lang.String"><![CDATA[$F{STATUS}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="" isBlankWhenNull="true" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self" >
<reportElement
style="Detail"
x="416"
y="0"
width="183"
height="15"
key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textFieldExpression class="java.lang.String"><![CDATA[($F{SCRIPT_RUN} == null ? "":(new SimpleDateFormat("MM/dd/yyyy HH:mm:ss")).format($F{SCRIPT_RUN}))]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="" isBlankWhenNull="true" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self" >
<reportElement
style="Detail"
x="599"
y="0"
width="183"
height="15"
key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textFieldExpression class="java.lang.String"><![CDATA[$F{NAME}]]></textFieldExpression>
</textField>

</band>
</detail>

<columnFooter>
<band height="0" >
</band>
</columnFooter>
<pageFooter>
<band height="27" >
<textField isStretchWithOverflow="false" pattern="" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self" >
<reportElement
x="572"
y="6"
width="170"
height="19"
key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Right">
<font size="10" isBold="false"/>
</textElement>
<textFieldExpression class="java.lang.String"><![CDATA["Page " + $V{PAGE_NUMBER} + " of "]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="false" pattern="" isBlankWhenNull="false" evaluationTime="Report" hyperlinkType="None" hyperlinkTarget="Self" >
<reportElement
x="746"
y="6"
width="36"
height="19"
key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left">
<font size="10" isBold="false"/>
</textElement>
<textFieldExpression class="java.lang.String"><![CDATA[" " + $V{PAGE_NUMBER}]]></textFieldExpression>
</textField>
<line direction="TopDown">
<reportElement
x="0"
y="3"
width="782"
height="0"
forecolor="#000000"
key="line"/>
<graphicElement stretchType="NoStretch">
<pen lineWidth="2.0" lineStyle="Solid"/>
</graphicElement>
</line>
<textField isStretchWithOverflow="false" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self" >
<reportElement
x="1"
y="6"
width="209"
height="19"
key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement>
<font size="10" isBold="false"/>
</textElement>
<textFieldExpression class="java.util.Date"><![CDATA[new Date()]]></textFieldExpression>
</textField>
</band>
</pageFooter>
<summary>
<band height="0" >
</band>
</summary>
</jasperReport>
Posted by: mramsdell 12 years ago
Orange Senior Belt
0
try this


<?xml version="1.0" encoding="UTF-8"?>
<!-- Created with iReport - A designer for JasperReports -->
<!DOCTYPE jasperReport PUBLIC "//JasperReports//DTD Report Design//EN" "http://jasperreports.sourceforge.net/dtds/jasperreport.dtd">
<jasperReport name="landscape"
columnCount="1"
printOrder="Vertical"
orientation="Portrait"
pageWidth="842"
pageHeight="595"
columnWidth="782"
columnSpacing="0"
leftMargin="30"
rightMargin="30"
topMargin="20"
bottomMargin="20"
whenNoDataType="AllSectionsNoDetail"
isTitleNewPage="false"
isSummaryNewPage="false">
<property name="ireport.scriptlethandling" value="0"/>
<property name="ireport.encoding" value="UTF-8"/>
<import value="java.util.*"/>
<import value="net.sf.jasperreports.engine.*"/>
<import value="net.sf.jasperreports.engine.data.*"/>
<style name="GroupLabel" mode="Transparent" fontName="Arial" fontSize="10" forecolor="#FFFFFF" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfFontName="Helvetica" isPdfEmbedded="false"/>
<style name="GroupHeader" mode="Transparent" fontName="Arial" fontSize="10" forecolor="#FFFFFF" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfFontName="Helvetica" isPdfEmbedded="false">
<box leftPadding="3"/>
</style>
<style name="GroupFooter" mode="Transparent" fontName="Arial" fontSize="10" forecolor="#e5e5e5" backcolor="#e5e5e5" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfFontName="Helvetica" isPdfEmbedded="false">
<box leftPadding="3"/>
</style>
<style name="ColumnHeaderFooter" mode="Transparent" isDefault="false" fontName="Arial" fontSize="10" forecolor="#FFFFFF" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfFontName="Helvetica" isPdfEmbedded="false">
<box leftPadding="3"/>
</style>
<style name="ColumnHeaderPanel" isDefault="false" mode="Opaque" forecolor="#FFFFFF" backcolor="#006699" fill="Solid" fontName="Arial" fontSize="10" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfFontName="Helvetica" isPdfEmbedded="false"/>
<style name="GroupHeaderPanel" isDefault="false" mode="Opaque" forecolor="#FFFFFF" backcolor="#999999" fill="Solid" fontName="Arial" fontSize="10" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfFontName="Helvetica" isPdfEmbedded="false"/>
<style name="ReportHeader" mode="Transparent" forecolor="#000000" isDefault="false" fontName="Arial" fontSize="16" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfFontName="Helvetica" isPdfEmbedded="false">
<box/>
</style>
<style name="Detail" mode="Transparent" forecolor="#000000" isDefault="false" fontName="Arial" fontSize="8" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfFontName="Helvetica" isPdfEmbedded="false">
<box/>
</style>
<style name="detail_small" isDefault="false" fontName="Arial" fontSize="8" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfFontName="Helvetica" isPdfEmbedded="false"/>
<style name="detail_large" isDefault="false" fontName="Arial" fontSize="10" isBold="false" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfFontName="Helvetica" isPdfEmbedded="false"/>
<style name="columnLabel" isDefault="false" forecolor="#000000" fontName="Arial" fontSize="10" isBold="true" isItalic="false" isUnderline="false" isStrikeThrough="false" pdfFontName="Helvetica-Bold" isPdfEmbedded="false"/>

<queryString><![CDATA[SELECT K.NAME,
CASE
WHEN KL.STATUS IN ( 1, 2 ) THEN 'SUCCESS'
WHEN KL.STATUS IN ( 3.4 ) THEN 'FAILURE'
ELSE 'UNKNOWN'
END AS STATUS,
START_TIME AS SCRIPT_RUN,
M.NAME
FROM KBOT_LOG KL
INNER JOIN KBOT K
ON K.ID = KL.KBOT_ID
AND K.TYPE != 'SYSTEM'
INNER JOIN MACHINE M
ON M.ID = KL.MACHINE_ID
WHERE K.NAME = 'CoWriter 6.0 '
ORDER BY 1,
2,
3,
4]]></queryString>


<field name="NAME" class="java.lang.String"/>
<field name="STATUS" class="java.lang.String"/>
<field name="SCRIPT_RUN" class="java.sql.Timestamp"/>
<field name="MACHINE_NAME" class="java.lang.String"/>





<background>
<band height="0">
</band>
</background>

<title>
<band height="100">
<line direction="TopDown">
<reportElement x="0" y="98" width="781" height="0" forecolor="#808080" key="line"/>
<graphicElement stretchType="NoStretch">
<pen lineWidth="2.0" lineStyle="Solid"/>
</graphicElement>
</line>
<line direction="TopDown">
<reportElement x="0" y="3" width="781" height="0" forecolor="#808080" key="line"/>
<graphicElement stretchType="NoStretch">
<pen lineWidth="2.0" lineStyle="Solid"/>
</graphicElement>
</line>
<staticText>
<reportElement style="ReportHeader" x="99" y="5" width="465" height="27" key="staticText-1"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<text><![CDATA[123 test]]></text>
</staticText>

<textField isStretchWithOverflow="false" pattern="'Generated :' EEEEE dd MMMMM yyyy 'at' HH:mm:ss" isBlankWhenNull="true" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self">
<reportElement style="detail_large" x="99" y="38" width="465" height="20" key="staticText-1"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textFieldExpression class="java.util.Date"><![CDATA[new Date()]]></textFieldExpression>
</textField>

<staticText>
<reportElement style="detail_large" x="99" y="58" width="465" height="20" key="staticText-4"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<text><![CDATA[Category :]]></text>
</staticText>

<staticText>
<reportElement style="detail_large" x="3" y="78" width="777" height="20" key="staticText-5"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<text><![CDATA[Description:]]></text>
</staticText>

<image evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self">
<reportElement x="3" y="5" width="85" height="30" key="image-1"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<graphicElement stretchType="NoStretch"/>
<imageExpression class="java.lang.String"><![CDATA["/kbox/kboxwww//adminui/reports/KBOX_logo.jpg"]]></imageExpression>
</image>
</band>
</title>

<pageHeader>
<band height="0">
</band>
</pageHeader>

<columnHeader>
<band height="20">
<frame>
<reportElement style="ColumnHeaderPanel" mode="Opaque" x="0" y="0" width="782" height="20" key="frame-2"/>

<line direction="BottomUp">
<reportElement x="0" y="0" width="782" height="0" forecolor="#000000" key="line"/>
<graphicElement stretchType="NoStretch">
<pen lineWidth="0.25" lineStyle="Solid"/>
</graphicElement>
</line>

<line direction="BottomUp">
<reportElement x="0" y="19" width="782" height="0" forecolor="#000000" key="line"/>
<graphicElement stretchType="NoStretch">
<pen lineWidth="0.25" lineStyle="Solid"/>
</graphicElement>
</line>


<staticText>
<reportElement style="ColumnHeaderFooter" x="0" y="0" width="50" height="15" key="staticText "/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left">
<font pdfEncoding="Cp1250"/>
</textElement>
<text><![CDATA[#]]></text>
</staticText> <staticText>
<reportElement style="ColumnHeaderFooter" x="50" y="0" width="156" height="15" key="staticText "/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left">
<font pdfEncoding="Cp1250"/>
</textElement>
<text><![CDATA[NAME]]></text>
</staticText> <staticText>
<reportElement style="ColumnHeaderFooter" x="206" y="0" width="156" height="15" key="staticText "/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left">
<font pdfEncoding="Cp1250"/>
</textElement>
<text><![CDATA[STATUS]]></text>
</staticText> <staticText>
<reportElement style="ColumnHeaderFooter" x="362" y="0" width="156" height="15" key="staticText "/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left">
<font pdfEncoding="Cp1250"/>
</textElement>
<text><![CDATA[SCRIPT_RUN]]></text>
</staticText> <staticText>
<reportElement style="ColumnHeaderFooter" x="518" y="0" width="156" height="15" key="staticText "/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left">
<font pdfEncoding="Cp1250"/>
</textElement>
<text><![CDATA[MACHINE_NAME]]></text>
</staticText>
</frame>
</band>
</columnHeader>

<detail>
<band height="17">
<line direction="TopDown">
<reportElement x="0" y="0" width="782" height="0" forecolor="#808080" backcolor="#FFFFFF" key="line"/>
<graphicElement stretchType="NoStretch"/>
</line>

<textField isStretchWithOverflow="true" pattern="" isBlankWhenNull="true" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self">
<reportElement style="Detail" x="0" y="0" width="50" height="15" key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textFieldExpression class="java.lang.String"><![CDATA[String.valueOf($V{REPORT_COUNT})]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="" isBlankWhenNull="true" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self">
<reportElement style="Detail" x="50" y="0" width="156" height="15" key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textFieldExpression class="java.lang.String"><![CDATA[$F{NAME}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="" isBlankWhenNull="true" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self">
<reportElement style="Detail" x="206" y="0" width="156" height="15" key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textFieldExpression class="java.lang.String"><![CDATA[$F{STATUS}]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="" isBlankWhenNull="true" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self">
<reportElement style="Detail" x="362" y="0" width="156" height="15" key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textFieldExpression class="java.lang.String"><![CDATA[($F{SCRIPT_RUN} == null ? "":(new SimpleDateFormat("MM/dd/yyyy HH:mm:ss")).format($F{SCRIPT_RUN}))]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="true" pattern="" isBlankWhenNull="true" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self">
<reportElement style="Detail" x="518" y="0" width="156" height="15" key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textFieldExpression class="java.lang.String"><![CDATA[$F{MACHINE_NAME}]]></textFieldExpression>
</textField>

</band>
</detail>

<columnFooter>
<band height="0">
</band>
</columnFooter>
<pageFooter>
<band height="27">
<textField isStretchWithOverflow="false" pattern="" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self">
<reportElement x="572" y="6" width="170" height="19" key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Right">
<font size="10" isBold="false"/>
</textElement>
<textFieldExpression class="java.lang.String"><![CDATA["Page " + $V{PAGE_NUMBER} + " of "]]></textFieldExpression>
</textField>
<textField isStretchWithOverflow="false" pattern="" isBlankWhenNull="false" evaluationTime="Report" hyperlinkType="None" hyperlinkTarget="Self">
<reportElement x="746" y="6" width="36" height="19" key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement textAlignment="Left">
<font size="10" isBold="false"/>
</textElement>
<textFieldExpression class="java.lang.String"><![CDATA[" " + $V{PAGE_NUMBER}]]></textFieldExpression>
</textField>
<line direction="TopDown">
<reportElement x="0" y="3" width="782" height="0" forecolor="#000000" key="line"/>
<graphicElement stretchType="NoStretch">
<pen lineWidth="2.0" lineStyle="Solid"/>
</graphicElement>
</line>
<textField isStretchWithOverflow="false" isBlankWhenNull="false" evaluationTime="Now" hyperlinkType="None" hyperlinkTarget="Self">
<reportElement x="1" y="6" width="209" height="19" key="textField"/>
<box>
<topPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<leftPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
<bottomPen lineWidth="0.0" lineColor="#000000"/>
<rightPen lineWidth="0.0" lineStyle="Solid" lineColor="#000000"/>
</box>
<textElement>
<font size="10" isBold="false"/>
</textElement>
<textFieldExpression class="java.util.Date"><![CDATA[new Date()]]></textFieldExpression>
</textField>
</band>
</pageFooter>
<summary>
<band height="0">
</band>
</summary>
</jasperReport>


Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

View more:

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ