<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<!-- MHonArc v2.6.10 -->
	<channel>
		<title>news.eclipse.birt.usability</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/maillist.html</link>
		<description>NewsGroup: news.eclipse.birt.usability</description>
		<language>en-us</language>
		<pubDate>Wed, 05 Aug 2009 15:35:36 GMT</pubDate>
		<lastBuildDate>Wed, 05 Aug 2009 15:35:36 GMT</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MHonArc RSS 2.0 RCFile</generator>
		<managingEditor>webmaster@eclipse.org (Webmaster)</managingEditor>
		<webMaster>webmaster@eclipse.org (Webmaster)</webMaster>
		<image>
			<title>news.eclipse.birt.usability</title>
			<url>http://www.eclipse.org/eclipse.org-common/themes/Phoenix/images/eclipse_home_header.jpg</url>
			<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/maillist.html</link>
		</image>
 

	<item>
		<title>[news.eclipse.birt.usability] Cross Table in Table</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00059.html</link>
		<description>Hi, I'm trying to put a cross table in a detail row of a table. I define a parametre in the data set of my data cube. How can I connect this parametre to set data set of the Table ? Thanks, Benoit </description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi,</pre><br>
<tt>I'm trying to put a cross table in a detail row of a table. I define a 
parametre in the data set of my data cube. 
How can I connect this parametre to set data set of the Table ?</tt><br>
<br>
<pre style="margin: 0em;">Thanks,
Benoit</pre><br>
<br>
]]></content:encoded>
		<pubDate>Wed, 05 Aug 2009 15:25:05 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00059.html</guid>
		<author>benoit.crochot@xxxxxxx (Benoit )</author>
	</item>


	<item>
		<title>[news.eclipse.birt.usability] Multiple Worksheets in Excel Support</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00058.html</link>
		<description>Is there a way to support multiple worksheets in a BIRT report? I have found nothing conclusive. Supposedly eSpreadsheet provides this feature but we are looking for an open source solution and want to use the existing BIRT Report Engine. I was thinking it...</description>
		<content:encoded><![CDATA[<tt>Is there a way to support multiple worksheets in a BIRT report? I have 
found nothing conclusive. Supposedly eSpreadsheet provides this feature 
but we are looking for an open source solution and want to use the 
existing BIRT Report Engine. I was thinking it may be possible to generate 
multiple BIRT reports and export them into individual Excel files then 
open those files using Apache POI and get the individual worksheets. Then 
create a master Excel file and add the individual worksheets. I know this 
is a more programmatic appraoch but it may work for the time being. Until 
support for multiple worksheets in BIRT is available.</tt><br>
<br>
<br>
]]></content:encoded>
		<pubDate>Fri, 05 Jun 2009 18:28:49 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00058.html</guid>
		<author>kyle.bober@xxxxxxx (Kyle S. Bober)</author>
	</item>


	<item>
		<title>[news.eclipse.birt.usability] java.lang.ClassCastException</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00057.html</link>
		<description>Hi all I update my application from BIRT 2.1 to BIRT 2.3 and find a porblem when render a report in pdf. Previously it was working properly. My code and error is as follows. please anybody help me. CODE: public ByteArrayOutputStream getReport(File rptDocFi...</description>
		<content:encoded><![CDATA[<tt>Hi all<br>
I update my application from BIRT 2.1 to BIRT 2.3 and find a porblem when 
render a report in pdf. Previously it was working properly. My code and 
error is as follows. please anybody help me. </tt><br>
<br>
<tt>CODE: </tt><br>
<br>
<pre style="margin: 0em;">public ByteArrayOutputStream getReport(File rptDocFile,
HttpServletRequest request) throws ViewerServletException {</pre><br>
<pre style="margin: 0em;"><br>IReportEngine engine = null;
IReportDocument iReportDocument = null;
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();</pre><br>
<pre style="margin: 0em;">try {
engine = BirtEngine.getBirtEngine();
iReportDocument = engine.openReportDocument(rptDocFile.getAbsolutePath());
IRenderTask renderTask = engine.createRenderTask(iReportDocument);	
PDFRenderContext renderContext = new PDFRenderContext( );	
HashMap contextMap = new HashMap();
contextMap.put(EngineConstants.APPCONTEXT_PDF_RENDER_CONTEXT,renderContext);
renderTask.setAppContext(contextMap);
// Set Render Options</pre><br>
<pre style="margin: 0em;">HTMLRenderOption renderOption = new HTMLRenderOption();
renderOption.setOutputStream(byteArrayOutputStream);
renderOption.setOutputFormat(&quot;pdf&quot;);
renderOption.setEmbeddable(true);
renderTask.setRenderOption(renderOption);</pre><br>
<pre style="margin: 0em;">renderTask.render();
renderTask.close();
//closing the document file after finish the work
iReportDocument.close();</pre><br>
<pre style="margin: 0em;">} catch (BirtException e) {
log.debug(&quot;PdfReportView:&quot;+e);
throw new ViewerServletException(e.getMessage(),e);
}
return byteArrayOutputStream;
}</pre><br>
<pre style="margin: 0em;"><br>ERROR</pre><br>
<tt>java.lang.ClassCastException: java.util.ArrayList cannot be cast to 
org.eclipse.birt.report.engine.layout.area.impl.ContainerArea<br>
at 
org.eclipse.birt.report.engine.layout.pdf.emitter.PDFLayoutEmitter.outputPage(PDFLayoutEmitter.java:379)<br>
at 
org.eclipse.birt.report.engine.layout.pdf.emitter.WrappedPDFLayoutEmitter.outputPage(WrappedPDFLayoutEmitter.java:188)<br>
at 
org.eclipse.birt.report.engine.layout.pdf.emitter.PageLayout.outputPage(PageLayout.java:373)<br>
at 
org.eclipse.birt.report.engine.layout.pdf.emitter.PageLayout.closeLayout(PageLayout.java:332)<br>
at 
org.eclipse.birt.report.engine.layout.pdf.emitter.ContainerLayout.closeFirstN(ContainerLayout.java:302)<br>
at 
org.eclipse.birt.report.engine.layout.pdf.emitter.ContainerLayout.closeFirstN(ContainerLayout.java:307)<br>
at 
org.eclipse.birt.report.engine.layout.pdf.emitter.ContainerLayout.closeFirstN(ContainerLayout.java:307)<br>
at 
org.eclipse.birt.report.engine.layout.pdf.emitter.ContainerLayout.closeExcludingLast(ContainerLayout.java:295)<br>
at 
org.eclipse.birt.report.engine.layout.pdf.emitter.RowLayout.closeLayout(RowLayout.java:91)<br>
at 
org.eclipse.birt.report.engine.layout.pdf.emitter.PDFLayoutEmitter.endTableContainer(PDFLayoutEmitter.java:416)<br>
at 
org.eclipse.birt.report.engine.layout.pdf.emitter.PDFLayoutEmitter.endRow(PDFLayoutEmitter.java:427)<br>
at 
org.eclipse.birt.report.engine.layout.pdf.emitter.WrappedPDFLayoutEmitter.endRow(WrappedPDFLayoutEmitter.java:230)<br>
at 
org.eclipse.birt.report.engine.layout.pdf.emitter.PDFLayoutEmitterProxy.endRow(PDFLayoutEmitterProxy.java:288)<br>
at 
org.eclipse.birt.report.engine.emitter.CompositeContentEmitter.endRow(CompositeContentEmitter.java:176)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLTableLayoutEmitter.endRow(HTMLTableLayoutEmitter.java:636)<br>
at 
org.eclipse.birt.report.engine.emitter.ContentEmitterUtil.endContent(ContentEmitterUtil.java:108)<br>
at 
org.eclipse.birt.report.engine.layout.html.buffer.AbstractNode.end(AbstractNode.java:68)<br>
at 
org.eclipse.birt.report.engine.layout.html.buffer.HTMLPageBuffer._endContainer(HTMLPageBuffer.java:154)<br>
at 
org.eclipse.birt.report.engine.layout.html.buffer.HTMLPageBuffer.endContainer(HTMLPageBuffer.java:142)<br>
at 
org.eclipse.birt.report.engine.layout.html.buffer.TableBreakBuffer.endContainer(TableBreakBuffer.java:285)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLStackingLM.end(HTMLStackingLM.java:43)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLAbstractLM.layout(HTMLAbstractLM.java:134)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLBlockStackingLM.layoutNodes(HTMLBlockStackingLM.java:68)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLStackingLM.layoutChildren(HTMLStackingLM.java:27)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLTableBandLM.layoutChildren(HTMLTableBandLM.java:65)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLAbstractLM.layout(HTMLAbstractLM.java:133)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLBlockStackingLM.layoutNodes(HTMLBlockStackingLM.java:68)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLStackingLM.layoutChildren(HTMLStackingLM.java:27)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLTableLM.layoutChildren(HTMLTableLM.java:76)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLAbstractLM.layout(HTMLAbstractLM.java:133)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLBlockStackingLM.layoutNodes(HTMLBlockStackingLM.java:68)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLPageLM.layout(HTMLPageLM.java:90)<br>
at 
org.eclipse.birt.report.engine.layout.html.HTMLReportLayoutEngine.layout(HTMLReportLayoutEngine.java:101)<br>
at 
org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.doRun(RunAndRenderTask.java:151)<br>
at 
org.eclipse.birt.report.engine.api.impl.RunAndRenderTask.run(RunAndRenderTask.java:72)<br>
at 
com.anabase.art.reportviewer.view.PdfReportView.getReport(PdfReportView.java:111)<br>
at 
com.anabase.art.reportviewer.ViewerServlet.viewReport(ViewerServlet.java:199)<br>
at 
com.anabase.art.reportviewer.ViewerServlet.execute(ViewerServlet.java:407)<br>
at 
com.anabase.art.reportviewer.ViewerServlet.doPost(ViewerServlet.java:108)<br>
at com.anabase.art.reportviewer.ViewerServlet.doGet(ViewerServlet.java:60)<br>
at javax.servlet.http.HttpServlet.service(HttpServlet.java:617)<br>
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)<br>
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)<br>
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)<br>
at 
org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:265)<br>
at 
org.acegisecurity.intercept.web.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:107)<br>
at 
org.acegisecurity.intercept.web.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:72)<br>
at 
org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:275)<br>
at 
org.acegisecurity.ui.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:124)<br>
at 
org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:275)<br>
at 
org.acegisecurity.providers.anonymous.AnonymousProcessingFilter.doFilter(AnonymousProcessingFilter.java:125)<br>
at 
org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:275)<br>
at 
org.acegisecurity.ui.AbstractProcessingFilter.doFilter(AbstractProcessingFilter.java:271)<br>
at 
org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:275)<br>
at 
org.acegisecurity.context.HttpSessionContextIntegrationFilter.doFilter(HttpSessionContextIntegrationFilter.java:249)<br>
at 
org.acegisecurity.util.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:275)<br>
at 
org.acegisecurity.util.FilterChainProxy.doFilter(FilterChainProxy.java:149)<br>
at 
org.acegisecurity.util.FilterToBeanProxy.doFilter(FilterToBeanProxy.java:98)<br>
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)<br>
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)<br>
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)<br>
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)<br>
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)<br>
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)<br>
at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)<br>
at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)<br>
at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)<br>
at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)<br>
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)<br>
at java.lang.Thread.run(Unknown Source)</tt><br>
<br>
<br>
]]></content:encoded>
		<pubDate>Wed, 27 May 2009 17:56:12 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00057.html</guid>
		<author>mehrab.ferdous@xxxxxxx (Mehrab )</author>
	</item>


	<item>
		<title>[news.eclipse.birt.usability] Re: IllegalStateException when	attempting to preview a report</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00056.html</link>
		<description>Issue resolved using the pull down menu 'Run/View Report/As HTML' instead of the report preview. </description>
		<content:encoded><![CDATA[<tt>Issue resolved using the pull down menu 'Run/View Report/As HTML' instead 
of the report preview. </tt><br>
<br>
<br>
]]></content:encoded>
		<pubDate>Fri, 08 May 2009 15:30:10 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00056.html</guid>
		<author>rlewelly@xxxxxxx (Rob )</author>
	</item>
	<item>
		<title>[news.eclipse.birt.usability] IllegalStateException when attempting	to preview a report</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00055.html</link>
		<description>I am having a problem generating a simple report in BIRT. I successfully created my Data Source (Oracle), my Data Set, and I have copied the data fields into my form. But every time I attempt to preview the report, receive the following exception: java.lan...</description>
		<content:encoded><![CDATA[<tt>I am having a problem generating a simple report in BIRT. I successfully 
created my Data Source (Oracle), my Data Set, and I have copied the data 
fields into my form.  But every time I attempt to preview the report, 
receive the following exception: </tt><br>
<br>
<tt>java.lang.IllegalStateException: The viewing session is not available or 
has expired.</tt><br>
<br>
<pre style="margin: 0em;">I am using Eclipse version: 3.4.2, BIRT version: 2.3.2.1</pre><br>
<tt>Any help would be greatly appreciated. </tt><br>
<br>
<tt>Thanks.  </tt><br>
<br>
<pre style="margin: 0em;">Rob</pre><br>
<pre style="margin: 0em;"><br>The full exception follows:</pre><br>
<tt><br>java.lang.IllegalStateException: The viewing session is not available or 
has expired.<br>
  at 
org.eclipse.birt.report.service.ReportEngineService.createRunAndRenderTask(ReportEngineService.java:983)<br>
  at 
org.eclipse.birt.report.service.ReportEngineService.runAndRenderReport(ReportEngineService.java:848)<br>
  at 
org.eclipse.birt.report.service.BirtViewerReportService.runAndRenderReport(BirtViewerReportService.java:938)<br>
  at 
org.eclipse.birt.report.service.actionhandler.BirtGetPageAllActionHandler.__execute(BirtGetPageAllActionHandler.java:131)<br>
  at 
org.eclipse.birt.report.service.actionhandler.AbstractBaseActionHandler.execute(AbstractBaseActionHandler.java:90)<br>
  at 
org.eclipse.birt.report.soapengine.processor.AbstractBaseDocumentProcessor.__executeAction(AbstractBaseDocumentProcessor.java:47)<br>
  at 
org.eclipse.birt.report.soapengine.processor.AbstractBaseComponentProcessor.executeAction(AbstractBaseComponentProcessor.java:143)<br>
  at 
org.eclipse.birt.report.soapengine.processor.BirtDocumentProcessor.handleGetPageAll(BirtDocumentProcessor.java:183)<br>
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br>
  at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)<br>
  at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)<br>
  at java.lang.reflect.Method.invoke(Method.java:597)<br>
  at 
org.eclipse.birt.report.soapengine.processor.AbstractBaseComponentProcessor.process(AbstractBaseComponentProcessor.java:112)<br>
  at 
org.eclipse.birt.report.soapengine.endpoint.BirtSoapBindingImpl.getUpdatedObjects(BirtSoapBindingImpl.java:66)<br>
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br>
  at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)<br>
  at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)<br>
  at java.lang.reflect.Method.invoke(Method.java:597)<br>
  at 
org.apache.axis.providers.java.RPCProvider.invokeMethod(RPCProvider.java:397)<br>
  at 
org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:186)<br>
  at 
org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)<br>
  at 
org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)<br>
  at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)<br>
  at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)<br>
  at 
org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454)<br>
  at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)<br>
  at 
org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)<br>
  at 
org.eclipse.birt.report.servlet.BirtSoapMessageDispatcherServlet.doPost(BirtSoapMessageDispatcherServlet.java:265)<br>
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:616)<br>
  at 
org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)<br>
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)<br>
  at 
org.eclipse.birt.report.servlet.BirtSoapMessageDispatcherServlet.service(BirtSoapMessageDispatcherServlet.java:122)<br>
  at 
org.eclipse.equinox.http.registry.internal.ServletManager$ServletWrapper.service(ServletManager.java:180)<br>
  at 
org.eclipse.equinox.http.servlet.internal.ServletRegistration.handleRequest(ServletRegistration.java:90)<br>
  at 
org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:111)<br>
  at 
org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:59)<br>
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)<br>
  at 
org.eclipse.equinox.http.jetty.internal.HttpServerManager$InternalHttpServiceServlet.service(HttpServerManager.java:269)<br>
  at 
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:428)<br>
  at 
org.mortbay.jetty.servlet.ServletHandler.dispatch(ServletHandler.java:677)<br>
  at 
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:568)<br>
  at org.mortbay.http.HttpContext.handle(HttpContext.java:1530)<br>
  at org.mortbay.http.HttpContext.handle(HttpContext.java:1482)<br>
  at org.mortbay.http.HttpServer.service(HttpServer.java:909)<br>
  at org.mortbay.http.HttpConnection.service(HttpConnection.java:820)<br>
  at org.mortbay.http.HttpConnection.handleNext(HttpConnection.java:986)<br>
  at org.mortbay.http.HttpConnection.handle(HttpConnection.java:837)<br>
  at 
org.mortbay.http.SocketListener.handleConnection(SocketListener.java:245)<br>
  at org.mortbay.util.ThreadedServer.handle(ThreadedServer.java:357)<br>
  at org.mortbay.util.ThreadPool$PoolThread.run(ThreadPool.java:534)</tt><br>
<br>
<pre style="margin: 0em;"><br></pre><br>
<pre style="margin: 0em;"><br></pre><br>
<pre style="margin: 0em;"><br></pre><br>
<pre style="margin: 0em;"><br></pre><br>
]]></content:encoded>
		<pubDate>Fri, 08 May 2009 11:33:31 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00055.html</guid>
		<author>rlewelly@xxxxxxx (Rob )</author>
	</item>


	<item>
		<title>[news.eclipse.birt.usability] WSDL  - WEB SERVICE DS</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00054.html</link>
		<description>helo my wdsl created with wsconsume on jbossAS, they are nor ok touser as a data source/data, can i have a clue how to deal with it please. Thanks </description>
		<content:encoded><![CDATA[<tt>helo my wdsl created with wsconsume on jbossAS, they are nor ok touser as 
a data source/data, can i have a clue how to deal with it please.<br>
Thanks</tt><br>
<br>
<br>
]]></content:encoded>
		<pubDate>Wed, 18 Feb 2009 10:43:04 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00054.html</guid>
		<author>pcosta@xxxxxxx (Paulo )</author>
	</item>


	<item>
		<title>[news.eclipse.birt.usability] Getting the formula error in the	reports in excel format</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00053.html</link>
		<description>Hi, Am working on BIRT-2.3.2 . I am able to generate the reports in excel format. But the problem is, it shows formula error on the grids in excel sheet , saying - &amp;quot;The number in this cell is formatted as text or preceded by an apostrophe&amp;quot; . This error is ...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;"><br>Hi,</pre><br>
<tt>Am working on BIRT-2.3.2 . I am able to generate the reports in excel 
format.<br>
But the problem is, it shows formula error on the grids in excel sheet , 
saying - &quot;The number in this cell is formatted as text or preceded by an 
apostrophe&quot; .<br>
This error is shown for the fields like SSN and zipcode which are always 
numerical in nature.For an alphanumeric field like adddress, it does not 
show this error. </tt><br>
<br>
<tt>I have set the datatype of these fields as String and not integer. 
Because, if i set it to integer , it shows the values as for eg :2,333 for 
zipcode or SSN fields which does not make sense.</tt><br>
<br>
<pre style="margin: 0em;">How do i get rid of this error .
Can anybody  please help me out.</pre><br>
<tt>Thanks </tt><br>
<br>
<pre style="margin: 0em;"><br></pre><br>
]]></content:encoded>
		<pubDate>Wed, 17 Dec 2008 10:01:41 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00053.html</guid>
		<author>roopa.kamath@xxxxxxx (Roopa )</author>
	</item>


	<item>
		<title>[news.eclipse.birt.usability] Re: use multiple fields for highlight	condition</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00052.html</link>
		<description> </description>
		<content:encoded><![CDATA[<tt>Actually you can slightly change the test expression as &quot;column1 &gt;= 30 
&amp;&amp; column2&gt;=10000 &quot; and use the &quot;isTrue&quot; operator, this will do the same 
trick.</tt><br>
<br>
<tt>Christine wrote:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">I need to highlight a value in a dataset based upon an 'and' condition.
IE: % column &gt;= 30 AND $ column &gt;=10000</pre><br>
<tt>right now I can see where I can put in the multiple conditions but I 
don't see a way to link these conditions together so that both must be 
true in order for the column to be highlighted.<br>
Is that a feature that is available?</tt><br>
<br>
</blockquote><br>
]]></content:encoded>
		<pubDate>Thu, 30 Oct 2008 08:00:58 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00052.html</guid>
		<author>zqian@xxxxxxx (Zhiqiang Qian)</author>
	</item>


	<item>
		<title>[news.eclipse.birt.usability] use multiple fields for highlight	condition</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00051.html</link>
		<description>I need to highlight a value in a dataset based upon an 'and' condition. IE: % column &amp;gt;= 30 AND $ column &amp;gt;=10000 right now I can see where I can put in the multiple conditions but I don't see a way to link these conditions together so that both must be true...</description>
		<content:encoded><![CDATA[<tt>I need to highlight a value in a dataset based upon an 'and' condition. </tt><br>
<br>
<pre style="margin: 0em;">IE: % column &gt;= 30 AND $ column &gt;=10000</pre><br>
<tt>right now I can see where I can put in the multiple conditions but I don't 
see a way to link these conditions together so that both must be true in 
order for the column to be highlighted. </tt><br>
<br>
<pre style="margin: 0em;">Is that a feature that is available?</pre><br>
<br>
]]></content:encoded>
		<pubDate>Wed, 29 Oct 2008 16:48:55 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00051.html</guid>
		<author>chmray@xxxxxxx (Christine )</author>
	</item>


	<item>
		<title>[news.eclipse.birt.usability] Birt is unsorting my data before	placing on chart</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00050.html</link>
		<description> I've got a sql statement that select data and creates a label using case statements.  I use the label as the X axis on a chart but I use the ORDERBY clause in the sql statement from the database.  When I view is in preview mode the data is properly sorted...</description>
		<content:encoded><![CDATA[
<br><font size=2 face="sans-serif">I've got a sql statement that select
data and creates a label using case statements. &nbsp;I use the label as
the X axis on a chart but I use the ORDERBY clause in the sql statement
from the database. &nbsp;When I view is in preview mode the data is properly
sorted, but when put in a chart BIRT messes up the order of the data so
that a few of the values get pulled out of order and put at the backend
of the chart. &nbsp;Ex. in order it would do 7am,9am,10am... 5pm,6pm,7pm,8am,11am.
&nbsp;Any ideas how to fix this.</font>]]></content:encoded>
		<pubDate>Thu, 07 Aug 2008 21:56:05 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.birt.usability/msg00050.html</guid>
		<author>ThomasMBrown@xxxxxxx (ThomasMBrown)</author>
	</item>

 
	</channel>
	</rss>
<!-- MHonArc v2.6.10 -->
