<p>I ran through an example from <a data-ipb='nomediaparse' href='
http://birtworld.blogspot.com/2011/02/birt-formatting-numbers-and-dates.html'>here</a>, where I'm attempting to format the string date to provide the "reporting period" in the header of a report which is easier to read.</p><p> </p><p>As the example showed, I added a Text Item, HTML, Dynamic Text with the following:</p><pre class="_prettyXprint _lang-html">Start Date: <VALUE-OF format="MMM-dd-yy">params["Start Date"].value;</VALUE-OF>End Date: <VALUE-OF format="MMM-dd-yy">params["Stop Date"].value;</VALUE-OF></pre><p>I have the Parameters set as a string linked to the Report Parameter "Start Date" and "Stop Date" (listed below).</p><p> </p><p>I have the default value for the Report Parameter "Start Date" as the following:</p><pre class="_prettyXprint _lang-">BirtDateTime.addDay(BirtDateTime.today(),-1)</pre><p>I have the default value for the Report Parameter "Stop Date" as the following:</p><pre class="_prettyXprint _lang-">BirtDateTime.now()</pre><p>The data provided when invoking a "Run" of the report for "Start Date" is:</p><pre class="_prettyXprint _lang-">2014-02-04 00:00:00.000-0500</pre><p>The data provided when invoking a "Run" of the report for "Stop Date" is:</p><pre class="_prettyXprint _lang-">2014-02-05 09:42:05.499</pre><p>When I run the report my formatted results in the header are:</p><pre class="_prettyXprint _lang-">Start Date: 2014-02-04 00:00:00.000-0500MMM-dd-yy End Date: 2014-02-05 09:42:05.499MMM-dd-yy</pre><p>While I ultimately desire having just the year, month, day, hour, and minute I thought I would try the example as is and make the appropriate modifications.</p><p> </p><p>I've ran through the other examples in the article linked above and the results are nearly always the same. I also tried some other examples in the forums and ran the Debugger where the only issues I see are "unnamed script", but from my searching that appears to be normal? Any advice or guidance would be appreciated! Thank you!</p>