Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cfreportparam undefined

Status
Not open for further replies.

zamvil

Programmer
Jul 25, 2002
9
0
0
MX
thread232-1635949

Hi, I want to use a cfreport but when access it displays variable undefined. I run the report with F12 in the CF Report builder and works but from a cfm page not works. I browse too the the cfreport and works too
this is my code

<CFREPORT format="PDF" template="formatos/POLIZA.cfr"
filename="polizas\test.pdf"
overwrite="yes" >
<cfreportparam name="poliza" value="3247285">
</cfreport>

and this the error

Variable POLIZA is undefined.


The error occurred in C:\inetpub\ line 769

Any hint to resolve this problem? How Should I send the parameter thru the cfreportparam?

regards
 
I already found the error. The error is in the query on the cfreport builder.

I had to tod the cf query like this with the cfqueryparam. Before I only had #nopoliza#


SELECT *
FROM dbo.DetallePoliza
WHERE dbo.DetallePoliza.PolizaGMX = <cfqueryparam value="#param.nopoliza#" cfsqltype="CF_SQL_INTEGER">

I hope it helps to other people.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top