Quantcast
Channel: Adobe Community : Popular Discussions - Reporting
Viewing all 38309 articles
Browse latest View live

How to debug - Connection to the server cannot be established

$
0
0
I get a error message when trying to use theColdFusion Report Builder Report Creation Wizard

When I go to create my Query I get[ColdFusion Report Builder] The Connection cannot be established [Ok]

I cannot find a error log or any kind of help document to find out why The Connection cannot be established.

I setup a localhost coldfusion test server with the exact same settings as my remote server and I can connect to the test server but the remote server will not work.

Where do I start please help I'm on a time sensitive project?

Report Builder throws error on Save

$
0
0

When I try to save a report that I have built in CF Report Builder 9, I get an error:

 

"Failed to save.

 

A name was started with an invalid character.

 

Line 321

    <queryparam name="ToDT" cftype="CF

 

"

 

If I go to Report --> Report Query I also throw an error:

 

"Object: TspTBXItem, miReportQuery

 

Exception:A name was started with an invalid character.

 

Line 8

       <queryparam name="ToDT" cftype="CF

 

See error log for stack trace

"

 

I can't find an error log.

 

 

Any ideas on how to fix this?  I would hate to have to start over.

 

Thanks,

 

Randy

Using html in cf report builder and escaping the & ampersand character

$
0
0

Some of the data we collect is entered via a WYSIWYG editor.  Therefore formatting such as bold, italic etc is translated into HTML.

The text could also contain special characters/accented characters, again these are translated into their html equivalents.

 

In CF Report Builder, I have set the XHTML Text formatting to TRUE.  However the report won't render the text in these boxes.  From what I can see it doesn't like the '&' character (ampersand).

 

I have read elsewhere that report builder is limited in the characters etc that it can read and that I should translate the values.  I ended up doing this in the database to try and save some time.

 

CREATE

 

 

ORREPLACEFUNCTIONtranslatexhtmltoasci(var_text IN appendix3%TYPE)

 

 

RETURNclob

IS

var_translated_text

 

clob;

BEGIN

 

select

 

 

replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(re place(replace(

 

 

replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(re place(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(

var_text

 

,chr(38) || 'lt;',chr(60))

 

 

,chr(38) || 'gt;',chr(62))

 

 

,chr(38) || 'euro;',chr(49792))

 

 

,chr(38) || 'iexcl;',chr(49825))

 

 

,chr(38) || 'cent;',chr(49826))

 

 

,chr(38) || 'pound;',chr(49827))

 

 

,chr(38) || 'curren;',chr(49828))

 

 

,chr(38) || 'yen;',chr(49829))

 

 

,chr(38) || 'brvbar;',chr(49830))

 

 

,chr(38) || 'uml;',chr(49832))

 

 

,chr(38) || 'copy;',chr(49833))

 

 

,chr(38) || 'ordf;',chr(49834))

 

 

,chr(38) || 'laquo;',chr(49835))

 

 

,chr(38) || 'not;',chr(49836))

 

 

,chr(38) || 'shy;',chr(49837))

 

 

,chr(38) || 'reg;',chr(49838))

 

 

,chr(38) || 'macr;',chr(49839))

 

 

,chr(38) || 'deg;',chr(49840))

 

 

,chr(38) || 'plusmn;',chr(49841))

 

 

,chr(38) || 'sup2;',chr(49842))

 

 

,chr(38) || 'sup3;',chr(49843))

 

 

,chr(38) || 'acute;',chr(49844))

 

 

,chr(38) || 'micro;',chr(49845))

 

 

,chr(38) || 'para;',chr(49846))

 

 

,chr(38) || 'middot;',chr(49847))

 

 

,chr(38) || 'cedil;',chr(49848))

 

 

,chr(38) || 'sup1;',chr(49849))

 

 

,chr(38) || 'ordm;',chr(49850))

 

 

,chr(38) || 'raquo;',chr(49851))

 

 

,chr(38) || 'frac14;',chr(49852))

 

 

,chr(38) || 'frac12;',chr(49853))

 

 

,chr(38) || 'frac34;',chr(49854))

 

 

,chr(38) || 'iquest;',chr(49855))

 

 

,chr(38) || 'Agrave;',chr(50048))

 

 

,chr(38) || 'Aacute;',chr(50049))

 

 

,chr(38) || 'Acirc;',chr(50050))

 

 

,chr(38) || 'Atilde;',chr(50051))

 

 

,chr(38) || 'Auml;',chr(50052))

 

 

,chr(38) || 'Aring;',chr(50053))

 

 

,chr(38) || 'AElig;',chr(50054))

 

 

,chr(38) || 'Ccedil;',chr(50055))

 

 

,chr(38) || 'Egrave;',chr(50056))

 

 

,chr(38) || 'Eacute;',chr(50057))

 

 

,chr(38) || 'Ecirc;',chr(50058))

 

 

,chr(38) || 'Euml;',chr(50059))

 

 

,chr(38) || 'Igrave;',chr(50060))

 

 

,chr(38) || 'Iacute;',chr(50061))

 

 

,chr(38) || 'Icirc;',chr(50062))

 

 

,chr(38) || 'Iuml;',chr(50063))

 

 

,chr(38) || 'ETH;',chr(50064))

 

 

,chr(38) || 'Ntilde;',chr(50065))

 

 

,chr(38) || 'Ograve;',chr(50066))

 

 

,chr(38) || 'Oacute;',chr(50067))

 

 

,chr(38) || 'Ocirc;',chr(50068))

 

 

,chr(38) || 'Otilde;',chr(50069))

 

 

,chr(38) || 'Ouml;',chr(50070))

 

 

,chr(38) || 'times;',chr(50071))

 

 

,chr(38) || 'Oslash;',chr(50072))

 

 

,chr(38) || 'Ugrave;',chr(50073))

 

 

,chr(38) || 'Uacute;',chr(50074))

 

 

,chr(38) || 'Ucirc;',chr(50075))

 

 

,chr(38) || 'Uuml;',chr(50076))

 

 

,chr(38) || 'THORN;',chr(50078))

 

 

,chr(38) || 'szlig;',chr(50079))

 

 

,chr(38) || 'agrave;',chr(50080))

 

 

,chr(38) || 'aacute;',chr(50081))

 

 

,chr(38) || 'acirc;',chr(50082))

 

 

,chr(38) || 'atilde;',chr(50083))

 

 

,chr(38) || 'auml;',chr(50084))

 

 

,chr(38) || 'aring;',chr(50085))

 

 

,chr(38) || 'aelig;',chr(50086))

 

 

,chr(38) || 'ccedil;',chr(50087))

 

 

,chr(38) || 'egrave;',chr(50088))

 

 

,chr(38) || 'eacute;',chr(50089))

 

 

,chr(38) || 'ecirc;',chr(50090))

 

 

,chr(38) || 'euml;',chr(50091))

 

 

,chr(38) || 'igrave;',chr(50092))

 

 

,chr(38) || 'iacute;',chr(50093))

 

 

,chr(38) || 'icirc;',chr(50094))

 

 

,chr(38) || 'iuml;',chr(50095))

 

 

,chr(38) || 'eth;',chr(50096))

 

 

,chr(38) || 'ntilde;',chr(50097))

 

 

,chr(38) || 'ograve;',chr(50098))

 

 

,chr(38) || 'oacute;',chr(50099))

 

 

,chr(38) || 'ocirc;',chr(50100))

 

 

,chr(38) || 'otilde;',chr(50101))

 

 

,chr(38) || 'ouml;',chr(50102))

 

 

,chr(38) || 'divide;',chr(50103))

 

 

,chr(38) || 'oslash;',chr(50104))

 

 

,chr(38) || 'ugrave;',chr(50105))

 

 

,chr(38) || 'uacute;',chr(50106))

 

 

,chr(38) || 'ucirc;',chr(50107))

 

 

,chr(38) || 'uuml;',chr(50108))

 

 

,chr(38) || 'yacute;',chr(50109))

 

 

,chr(38) || 'thorn;',chr(50110))

 

 

,chr(38) || 'yuml;',chr(50111))

 

 

,chr(38) || 'quot;',chr(34))

 

 

,chr(38) || 'amp;',chr(38))

 

 

,chr(38) || 'apos;',chr(39))

 

 

,chr(38) || 'nbsp;',chr(32))

 

 

,chr(38) || 'sect;',chr(49831))

 

 

,chr(38) || 'Yacute;',chr(50077))

 

 

,chr(38) || 'sbquo;',chr(49794))

 

 

,chr(38) || 'fnof;',chr(49795))

 

 

,chr(38) || 'bdquo;',chr(49796))

 

 

,chr(38) || 'hellip;',chr(49797))

 

 

,chr(38) || 'dagger;',chr(49798))

 

 

,chr(38) || 'Dagger;',chr(49799))

 

 

,chr(38) || 'circ;',chr(49800))

 

 

,chr(38) || 'permil;',chr(49801))

 

 

,chr(38) || 'Scaron;',chr(49802))

 

 

,chr(38) || 'lsaquo;',chr(49803))

 

 

,chr(38) || 'OElig;',chr(49804))

 

 

,chr(38) || 'lsquo;',chr(49809))

 

 

,chr(38) || 'rsquo;',chr(49810))

 

 

,chr(38) || 'ldquo;',chr(49811))

 

 

,chr(38) || 'rdquo;',chr(49812))

 

 

,chr(38) || 'bull;',chr(49813))

 

 

,chr(38) || 'ndash;',chr(49814))

 

 

,chr(38) || 'mdash;',chr(49815))

 

 

,chr(38) || 'tilde;',chr(49816))

 

 

,chr(38) || 'trade;',chr(49817))

 

 

,chr(38) || 'scaron;',chr(49818))

 

 

,chr(38) || 'rsaquo;',chr(49819))

 

 

,chr(38) || 'oelig;',chr(49820))

 

 

,chr(38) || 'Yuml;',chr(49823))

into

 

 

var_translated_text

from

 

 

dual;

 

 

 

RETURN var_translated_text;

END

 

 

translatexhtmltoasci;

/

 

 

However my question is, how can I output the ampersand character? I've tried replacing it for chr(38) but it just outputs the & and leaves the rest of the text unrendered.

 

eg)  The output in report builder becomes something like this:

 

...

E 300 L-Ascorbic acid in O.J. L 254 of 01/01/2009, p.68<p> </p><p> </p></li></p><BR/><b>Removal</b><br><p>The entries struck through in edition 98 are now

removed.</p><BR/><b>Note</b><br><p>tests <sub>2 </sub>m<sup>2.</sup></p><p>1233456 <strong>bold </strong><u>underline </u><em>italic</em></p><ul><li>bullet

1</li><li>bullet 2</li><li>bullet 3</li></ul><p>aeiou mù^$*)àç_è-(é</p><p>2 ù</p><p>Michael & sons.</p><BR/>

CFDOCUMENT

$
0
0
I am using cfdocument's ability to generate PDF documents from XHTLM 1.0 Transitional webpages. I using supported CSS styles to format the page by importing the style sheet. All styles with the exception of text-align:justified work perfectly. Does anyone have any ideas on how to get this working?

Code Sample of doc...

<!--- cfdocument pdf attribute collection --->
<cfset pdfdef = structNew()>
<cfset pdfdef.format = "PDF">
<cfset pdfdef.orientation = "portrait">
<cfset pdfdef.pageType = "letter">
<cfset pdfdef.mimeType = "text/html">
<cfset pdfdef.pageType = "letter">
<cfset pdfdef.encryption = "40-bit">
<cfset pdfdef.ownerPassword = "arsiarsi">
<cfset pdfdef.marginLeft = 1>
<cfset pdfdef.marginRight = 1>
<cfset pdfdef.marginTop = 1>
<cfset pdfdef.marginBottom = 1>
<cfset pdfdef.permissions = "AllowPrinting,AllowDegradedPrinting">


<!--- Generate PDF report --->
<cfdocument attributeCollection="#pdfdef#">

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>AZCF</title>

<!--- Link to Waivers.css for formating --->
<style type="text/css">
<!--
@import url("waivers.css");
-->
</style>

</head>

<body>
<p>A paragraph</p>
</body>

</html>

</cfdocument>

Code sample of Style Sheet...
@charset "utf-8";
/* CSS Document */

p {
width: 600px;
text-indent: 0.25in;
text-align: justify;
font-family: Verdana, Arial;
font-size: 11px;
line-height:2em;
}
td {
font-family: Verdana, Arial;
font-size: 11px;
}
th {
font-family: Verdana, Arial;
font-size: 14px;
}
.cliHead {
font-family: Verdana, Arial;
font-size: 12px;
color: #003366;
font-weight: normal;
}
.cliHeadBold {
font-weight: bold;
}
.labels {
font-style: italic;
font-weight: bold;
font-size: 9px;
}
.disclaimBox {
font-weight: bold;
text-indent: 0px;
border: thin solid #000000;
padding: 2px;
line-height: normal;
}

Thanks for the help in advanced and I will be sure to come back and help another!

Martin Franklin

Cold Fusion Report Builder - A Dud ???

$
0
0
I have spent the last 2 weeks working on a (one) report. In general I have been happy with what I have been able to produce, but have been naively thinking that the issues I have been working through have just been part of the learning curve associated with becoming familiar with any new tool.

After 2 painful weeks, all I can assume is that Cold Fusion Report Builder is a load of rubbish. This thing is just so damn buggy it should never have been released. It should still be in Adobe Labs !!!

I am interested in hearing the thoughts of others who use this tool. Should I quit while I still have my sanity (and business) or is it worth persisting with?

Look forward to hearing peoples thoughts.

Can't add attribute to 0-length text

$
0
0
I have a CFREPORT Template that has been running fine for months. This report has 8 layered controls (Color coded page tabs for a Table of Contents). Yesterday I added 2 new Calculated Fields and added 2 layers to the 8 making ten layers. Each layer has its own "Print When" clause etc etc. Ever since I have been getting the error message in the title of this thread.

Is there some kind of clue or secret code to help figure out what is going on here? I have no 0 length text at least that I can see. How can I pinpoint which control or field may be causing the problem?

Positive bar chart dataLabel displaying on negative side of chart

$
0
0
When charting (chartseries type horizontalbar), a large span in values like 1 and 1200, with a scaleFrom of 0. The bars dataLabel that is charting the 1 is displaying on the negative side of the chart and since the scale starts a 0 the label is not visible. Which in turn is making users think the value is 0. I have no clue why it is dropping it on the negative side of the chart when it is a positive number, but anyway, is there any way to tell WebCharts to put the label on the positive side of the chart?

inner join & outer join in one query

$
0
0

I have 11 tables, 10 of the tables need will always have a match on id, the 11th table may or my not have a match. I need to print info from the 10 tables with a matching id and information from the 11th table if a record is found.

Please help.


cfprint on a dot matrix printer

$
0
0

Hi all -

I have a pdf that I'm printing on a dot matrix printer.  In my pdf, I've specified that it should print using the Courier font.  When I look at the pdf in Adobe Reader, it's in courier and when I print the document directly from Adobe Reader it prints in courier.  However, when I print the same document using cfprint it prints using a san serif font.

Any idea how I might get cfprint to acknowledge the courier font?

Crosstab in CF Report Builder 8

$
0
0

I know this has been asked before but I can't seem to find anything current.  I came across some stuff but the links were diead or explanatory images didn't show.

 

It seems that Report Builder doesn't do crosstabs.  I wondered if anyone had come across any kind of workaround.  What I would like to show is something like:

 

Books Circulated

                              Jan          Feb          Mar          Apr...                                        Year Total

Red Books          100          200          300          400

 

Blue Books          300          100          200          200

 

Total                    400          300          500          600

 

Seems like it should be doable.  I usually us a crosstab and it is relatively straightforward.  Any suggestions in Reprot Builder?  Thanks.

Page Footer whitespace

$
0
0

I have an invoice report that had N number of line items with N number of lines of description per line item. The invoice displays all of the line items, and then at the bottom of the last page, it provides a signature block for the customer to sign. Here is my problem: If I put the signature block in the page footer, it's displayed at the bottom - which I want - but repeated on every page. If I put the signature block in the report footer, it's displayed on the last page - which I want - but immediately following the last line item. I need it at the bottom of the last page only. The closest I have gotten is to try and predict the number of page that I will have and then hide the page footer until (what I think will be) the last page. However, this still have the page footer whitespace to show up which isn't right.

report footer from other table

$
0
0

I need put some information on the report footer which data from other tables then the main report.

It seems that report builder only accept one query, are there any way to let my report footer data to link another table or data source,

 

Because they are differrnt structure, it will be difficult to put in same table structure.

If I hard code the report footer then I need update the report cfr file every time the data change.

 

 

Your help and information is great appreciated,

 

Regards,

 

 

Iccsi,

second sub report

$
0
0

I have a report which has one sub report and works.

I just move this sub report from column footer to rpeort footer and add a new sub report to column report.

The main report and first sub report works still the same, but second sub report added does not show on the report.

The usb report works fine itself.

I just wanted to know are there any particular configure for more than one subreport on the report.

Your help and information is great appreciated,

 

Regards,

 

Iccsi,

cfchart questions

$
0
0
Thanks in advance for any help you can give me! I have a basic bar chart with 5 cfchartseries. Each cfchartseries has a seriesLabel parameter with a value, but they are just not showing up on the resulting chart's x-axis (or anywhere), no matter how wide I make the chart or how small I make all the text (I even set them all to "1" to ensure it was small enough).

Additionally, does anyone know how I can change the color and location of the dataSeriesLabel values? I've got the value from the query showing up in the bar itself, but it's black. I'd like to make it white (easier to see) or put the value just above the top of the bar.

These seem like they would be simple, but I can't seem to find this info anywhere, so any help at all - or a push in the right direction - would be much appreciated!

Bill

XHTML formatting does not work

$
0
0

XHTML formatting text parameter for query fields does not seems to work (MS SQL ntext containing fckeditor HTML text).

- My DB is MS SQL, code page FRENCH (may be the issue ?), tested both nvarchar(max) and text field types.

- I've tried both direct cfr invocation and cfreport (+ styling techniques: external Css or "cfset inline CSS" ).

- I've set the XHTML Text Format for the field within the report builder

 

Anyone had the same problem or any similar issue ?

Thanks in advance.

 

Edit, 4 hours later ...

 

I found the problem (by inserting different combinations of HTML instructions in the DB string).
While a trivial <p>toto</p><i>titi</i> will work, the whole string will be escaped (<p> = &lt;p&gt; ) as soon as an unrecognized sequence (as &aacute; ) will be found. So the problem is identified ... not the solution yet.


Using html in cf report builder and escaping the & ampersand character

$
0
0

Some of the data we collect is entered via a WYSIWYG editor.  Therefore formatting such as bold, italic etc is translated into HTML.

The text could also contain special characters/accented characters, again these are translated into their html equivalents.

 

In CF Report Builder, I have set the XHTML Text formatting to TRUE.  However the report won't render the text in these boxes.  From what I can see it doesn't like the '&' character (ampersand).

 

I have read elsewhere that report builder is limited in the characters etc that it can read and that I should translate the values.  I ended up doing this in the database to try and save some time.

 

CREATE

 

 

ORREPLACEFUNCTIONtranslatexhtmltoasci(var_text IN appendix3%TYPE)

 

 

RETURNclob

IS

var_translated_text

 

clob;

BEGIN

 

select

 

 

replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(re place(replace(

 

 

replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(re place(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(r eplace(replace

 

 

(replace(replace(replace(replace(replace(replace(replace(replace(replace(

var_text

 

,chr(38) || 'lt;',chr(60))

 

 

,chr(38) || 'gt;',chr(62))

 

 

,chr(38) || 'euro;',chr(49792))

 

 

,chr(38) || 'iexcl;',chr(49825))

 

 

,chr(38) || 'cent;',chr(49826))

 

 

,chr(38) || 'pound;',chr(49827))

 

 

,chr(38) || 'curren;',chr(49828))

 

 

,chr(38) || 'yen;',chr(49829))

 

 

,chr(38) || 'brvbar;',chr(49830))

 

 

,chr(38) || 'uml;',chr(49832))

 

 

,chr(38) || 'copy;',chr(49833))

 

 

,chr(38) || 'ordf;',chr(49834))

 

 

,chr(38) || 'laquo;',chr(49835))

 

 

,chr(38) || 'not;',chr(49836))

 

 

,chr(38) || 'shy;',chr(49837))

 

 

,chr(38) || 'reg;',chr(49838))

 

 

,chr(38) || 'macr;',chr(49839))

 

 

,chr(38) || 'deg;',chr(49840))

 

 

,chr(38) || 'plusmn;',chr(49841))

 

 

,chr(38) || 'sup2;',chr(49842))

 

 

,chr(38) || 'sup3;',chr(49843))

 

 

,chr(38) || 'acute;',chr(49844))

 

 

,chr(38) || 'micro;',chr(49845))

 

 

,chr(38) || 'para;',chr(49846))

 

 

,chr(38) || 'middot;',chr(49847))

 

 

,chr(38) || 'cedil;',chr(49848))

 

 

,chr(38) || 'sup1;',chr(49849))

 

 

,chr(38) || 'ordm;',chr(49850))

 

 

,chr(38) || 'raquo;',chr(49851))

 

 

,chr(38) || 'frac14;',chr(49852))

 

 

,chr(38) || 'frac12;',chr(49853))

 

 

,chr(38) || 'frac34;',chr(49854))

 

 

,chr(38) || 'iquest;',chr(49855))

 

 

,chr(38) || 'Agrave;',chr(50048))

 

 

,chr(38) || 'Aacute;',chr(50049))

 

 

,chr(38) || 'Acirc;',chr(50050))

 

 

,chr(38) || 'Atilde;',chr(50051))

 

 

,chr(38) || 'Auml;',chr(50052))

 

 

,chr(38) || 'Aring;',chr(50053))

 

 

,chr(38) || 'AElig;',chr(50054))

 

 

,chr(38) || 'Ccedil;',chr(50055))

 

 

,chr(38) || 'Egrave;',chr(50056))

 

 

,chr(38) || 'Eacute;',chr(50057))

 

 

,chr(38) || 'Ecirc;',chr(50058))

 

 

,chr(38) || 'Euml;',chr(50059))

 

 

,chr(38) || 'Igrave;',chr(50060))

 

 

,chr(38) || 'Iacute;',chr(50061))

 

 

,chr(38) || 'Icirc;',chr(50062))

 

 

,chr(38) || 'Iuml;',chr(50063))

 

 

,chr(38) || 'ETH;',chr(50064))

 

 

,chr(38) || 'Ntilde;',chr(50065))

 

 

,chr(38) || 'Ograve;',chr(50066))

 

 

,chr(38) || 'Oacute;',chr(50067))

 

 

,chr(38) || 'Ocirc;',chr(50068))

 

 

,chr(38) || 'Otilde;',chr(50069))

 

 

,chr(38) || 'Ouml;',chr(50070))

 

 

,chr(38) || 'times;',chr(50071))

 

 

,chr(38) || 'Oslash;',chr(50072))

 

 

,chr(38) || 'Ugrave;',chr(50073))

 

 

,chr(38) || 'Uacute;',chr(50074))

 

 

,chr(38) || 'Ucirc;',chr(50075))

 

 

,chr(38) || 'Uuml;',chr(50076))

 

 

,chr(38) || 'THORN;',chr(50078))

 

 

,chr(38) || 'szlig;',chr(50079))

 

 

,chr(38) || 'agrave;',chr(50080))

 

 

,chr(38) || 'aacute;',chr(50081))

 

 

,chr(38) || 'acirc;',chr(50082))

 

 

,chr(38) || 'atilde;',chr(50083))

 

 

,chr(38) || 'auml;',chr(50084))

 

 

,chr(38) || 'aring;',chr(50085))

 

 

,chr(38) || 'aelig;',chr(50086))

 

 

,chr(38) || 'ccedil;',chr(50087))

 

 

,chr(38) || 'egrave;',chr(50088))

 

 

,chr(38) || 'eacute;',chr(50089))

 

 

,chr(38) || 'ecirc;',chr(50090))

 

 

,chr(38) || 'euml;',chr(50091))

 

 

,chr(38) || 'igrave;',chr(50092))

 

 

,chr(38) || 'iacute;',chr(50093))

 

 

,chr(38) || 'icirc;',chr(50094))

 

 

,chr(38) || 'iuml;',chr(50095))

 

 

,chr(38) || 'eth;',chr(50096))

 

 

,chr(38) || 'ntilde;',chr(50097))

 

 

,chr(38) || 'ograve;',chr(50098))

 

 

,chr(38) || 'oacute;',chr(50099))

 

 

,chr(38) || 'ocirc;',chr(50100))

 

 

,chr(38) || 'otilde;',chr(50101))

 

 

,chr(38) || 'ouml;',chr(50102))

 

 

,chr(38) || 'divide;',chr(50103))

 

 

,chr(38) || 'oslash;',chr(50104))

 

 

,chr(38) || 'ugrave;',chr(50105))

 

 

,chr(38) || 'uacute;',chr(50106))

 

 

,chr(38) || 'ucirc;',chr(50107))

 

 

,chr(38) || 'uuml;',chr(50108))

 

 

,chr(38) || 'yacute;',chr(50109))

 

 

,chr(38) || 'thorn;',chr(50110))

 

 

,chr(38) || 'yuml;',chr(50111))

 

 

,chr(38) || 'quot;',chr(34))

 

 

,chr(38) || 'amp;',chr(38))

 

 

,chr(38) || 'apos;',chr(39))

 

 

,chr(38) || 'nbsp;',chr(32))

 

 

,chr(38) || 'sect;',chr(49831))

 

 

,chr(38) || 'Yacute;',chr(50077))

 

 

,chr(38) || 'sbquo;',chr(49794))

 

 

,chr(38) || 'fnof;',chr(49795))

 

 

,chr(38) || 'bdquo;',chr(49796))

 

 

,chr(38) || 'hellip;',chr(49797))

 

 

,chr(38) || 'dagger;',chr(49798))

 

 

,chr(38) || 'Dagger;',chr(49799))

 

 

,chr(38) || 'circ;',chr(49800))

 

 

,chr(38) || 'permil;',chr(49801))

 

 

,chr(38) || 'Scaron;',chr(49802))

 

 

,chr(38) || 'lsaquo;',chr(49803))

 

 

,chr(38) || 'OElig;',chr(49804))

 

 

,chr(38) || 'lsquo;',chr(49809))

 

 

,chr(38) || 'rsquo;',chr(49810))

 

 

,chr(38) || 'ldquo;',chr(49811))

 

 

,chr(38) || 'rdquo;',chr(49812))

 

 

,chr(38) || 'bull;',chr(49813))

 

 

,chr(38) || 'ndash;',chr(49814))

 

 

,chr(38) || 'mdash;',chr(49815))

 

 

,chr(38) || 'tilde;',chr(49816))

 

 

,chr(38) || 'trade;',chr(49817))

 

 

,chr(38) || 'scaron;',chr(49818))

 

 

,chr(38) || 'rsaquo;',chr(49819))

 

 

,chr(38) || 'oelig;',chr(49820))

 

 

,chr(38) || 'Yuml;',chr(49823))

into

 

 

var_translated_text

from

 

 

dual;

 

 

 

RETURN var_translated_text;

END

 

 

translatexhtmltoasci;

/

 

 

However my question is, how can I output the ampersand character? I've tried replacing it for chr(38) but it just outputs the & and leaves the rest of the text unrendered.

 

eg)  The output in report builder becomes something like this:

 

...

E 300 L-Ascorbic acid in O.J. L 254 of 01/01/2009, p.68<p> </p><p> </p></li></p><BR/><b>Removal</b><br><p>The entries struck through in edition 98 are now

removed.</p><BR/><b>Note</b><br><p>tests <sub>2 </sub>m<sup>2.</sup></p><p>1233456 <strong>bold </strong><u>underline </u><em>italic</em></p><ul><li>bullet

1</li><li>bullet 2</li><li>bullet 3</li></ul><p>aeiou mù^$*)àç_è-(é</p><p>2 ù</p><p>Michael & sons.</p><BR/>

Having a chart change based on what group is displaying in Report Builder.

$
0
0

Hello, I'm trying to create a report that is grouped by department that shows data for the last 12 months in the detailed section. I also want to have a chart that will graph that data in the group header. I have tried to 'link' the query in the chart using #query.dept_id# to limit the data to just that department, but the #query.dept_id# does NOT seem to change when the dept_id changes. There seems to be a way to link a sub-report, but no way to link a chart.

 

 

Any help would be greatly appreciated.

 

 

Thanks

Infinite loop creating new page due to column header overflow.

$
0
0

i am getting an error and some pages "Infinite loop creating new page due to column header overflow. " --

 

using report builder 9, i have a fairly simple report - that contains 4 subreports.

 

for some pages i get the error - it seems if there is more data than would fit on 1 page.

smaller pages work fine.

the subreports are all simple queries and dumps....

containing page header, column header, detail sections.

page header has just a text bar of the name of the section.

column header has the field names

detail section has the data - 1 row for each row in the recordset.

 

nothing i do seems to change getting "Infinite loop creating new page due to column header overflow. " on a page with more than 15-20 records returned.

 

any ideas would be appreciated.

insert sub report error message

$
0
0

Object: TfrmWizardTemplate, frmWizardTemplate

 

Exception:'String) into type (Boolean) when evaluation instruction OperEqual ($0' is not a value integer value

See error log for stack trace.

 

 

I got above error message while I insert a sub report to my report and I am unable to close Report Builde/ I had to use task manager to end task to close Report Builder.

The cancel, previouse, Next and Finish buttons are disabled on the sureport source form.

 

Your help and information is great appreciated,

 

Regards,

 

Iccsi,

sub report in column header

$
0
0

Infinite loop creating new page due to column header overflow.

 

I have a sub report on the column header which works,

Because my sub report return different records from data source, it fails and get infinite loop error message like above when I have 9 records, it works less than 9 records.

 

I would like to know my sub report returns records some times more, are there any place for my subreport?

Are there limit for sub report?

 

Your help and information is great appreciated,

 

Regards,

 

Iccsi,

Viewing all 38309 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>