Please follow the debugging guide in the back of the ZEN Reports manual and use $REPORTNAME to get more information about the cause of your problem.
http://docs.intersystems.com/cache20082/csp/docbook/DocBook.UI.Page.cls?KEY=GRPT_troubleshoot
Thanks,
Jonathan
--
You received this message because you are subscribed to the Google Groups "InterSystems: Zen Community" group.
To post to this group, send email to
InterSys...@googlegroups.com
To unsubscribe from this group, send email to
InterSystems-Z...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/InterSystems-ZEN?hl=en
Zen Community Terms and Conditions:
http://groups.google.com/group/InterSystems-ZEN/web/community-terms-and-conditions
---
You received this message because you are subscribed to the Google Groups "InterSystems: Zen Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
intersystems-z...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Regards
Sasi
Your X windows configuration is not correct to actually view the pdf file (were one to be displayed). Have you enabled X Forwarding as appropriate for your laptop/workstation? Do you have an X Server on your Windows computer (if using OS X it already has X11 or XQuartz so you only need the forwarding).
You should also be able to ignore the warning, I think, and just look at the log to see what is happening.
~Derek
Hi Sasi,
Try setting –Djava.awt.headless=true
As so in fop command file:
fop_exec_command="exec \"$JAVACMD\" $LOGCHOICE $LOGLEVEL -classpath \"$LOCALCLASSPATH\" -Xmx512m -Djava.awt.headless=true $TRANSFORMER_OPTS $FOP_OPTS org.apache.fop.cli.Main $fop_exec_args"
What is your version of fop? You can detect this by running:
fop –version
How are you running the fop command? The error looks like an error running the fop command, not an error in the script that runs the fop command.
Hi Sasi,
Aren’t you missing the –xml in front of test.xml?
Regards,
Jonathan
Hi Sasi,
Please send me a ZEN Report that duplicates this problem. I’m sure you have invalid xsl. I need to understand why.
Thanks,
Jonathan
Hi Sasi,
Your ReportDisplay looks like the following:
<report xmlns="http://www.intersystems.com/zen/report/display"
name="tmp">
<header>
<table group="record" orient="col" width="8in" class='table4'>
<item caption="t" field="@t" width="2in"/>
</table>
</header>
</report>
You need to enclose <header> within <body> so your report looks like the following:
<report xmlns="http://www.intersystems.com/zen/report/display"
name="tmp">
<body>
<header>
<table group="record" orient="col" width="8in" class='table4'>
<item caption="t" field="@t" width="2in"/>
</table>
</header>
</body>
</report>
I believe the structure of a report is specified in the documentation.
I don’t know what would cause the issue with blank output on the *other* reports you are describing.
Hi Sasi,
What are you trying to do? Why can’t you use GenerateReport?