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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What does browser error mean?

Status
Not open for further replies.
Oct 11, 2006
300
US
What does this error mean?

Error Type:
Crystal Reports ActiveX Designer (0x80047CCA)
The parameter value is not in the range limit.
/scripts/padmaja/testing1/ViewReports1.asp, line 98

The report has 2 parameters in the Page header. These parameters take the values from the ASP page.

This error is at this line where I am passing date values. This parameter works in another report where I am passing the same parameters.

Call MyParam1.SetCurrentValue(CDbl(MyNewParamValue1), 7)

where MyNewParamValue = strEmpID

strEmpID = Request.Form("empid")

Report has employee id as a numeric. So I cast as a number and send it.

Any ideas about the error?

Thanks.
 
This field is not a null field. It is a mandatory field. I go this error because my parameters in CR 8.5 was not in the same order as the parameters listed in ASP/

Once I re-arranged, I got the reports on the web browser.
 
Makes sense, you were probably passing an invalid value, null, non-numerics or 0.

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top