All
Please help!!!!
I am using CR 8.5, SQL Server 2000, Windows 2000 Server. Here is the script that I created to call my report:
<CFOUTPUT>#FORM.custID#</cfoutput>
<CFOUTPUT>#DateFormat('#FORM.birthFr#', "mm/dd/yy"
#</cfoutput>
<CFSET datestring = createODBCdate('#FORM.birthFr#')>
<CFOUTPUT>#datestring#</cfoutput>
<!---<CFOUTPUT>#DateFormat(createodbcdate(datestring), "mm/dd/yy"
#</cfoutput>--->
<CFREPORT REPORT="C:\Inetpub\{cust.CustID} LIKE '<CFOUTPUT>#FORM.custID#*</cfoutput>' AND
{cust.status} LIKE '<CFOUTPUT>#FORM.status#*</cfoutput>'
AND {cust.birthday} = '<CFOUTPUT>#datestring#</cfoutput>'
</CFREPORT>
As you can see from the first 2 lines, I can have the date displayed in any format that I want. However, I have the problem to pass the DATE parameter to the report. I get the error: "An unexpected error occurred while using the Crystal Engine. Error number 500 ocurred." It's so weird because I can pass any number of strings that I want but when I have a DATE parameter, I get the error.
Can someone help me, please. Thanks.
HP
Please help!!!!
I am using CR 8.5, SQL Server 2000, Windows 2000 Server. Here is the script that I created to call my report:
<CFOUTPUT>#FORM.custID#</cfoutput>
<CFOUTPUT>#DateFormat('#FORM.birthFr#', "mm/dd/yy"
<CFSET datestring = createODBCdate('#FORM.birthFr#')>
<CFOUTPUT>#datestring#</cfoutput>
<!---<CFOUTPUT>#DateFormat(createodbcdate(datestring), "mm/dd/yy"
<CFREPORT REPORT="C:\Inetpub\{cust.CustID} LIKE '<CFOUTPUT>#FORM.custID#*</cfoutput>' AND
{cust.status} LIKE '<CFOUTPUT>#FORM.status#*</cfoutput>'
AND {cust.birthday} = '<CFOUTPUT>#datestring#</cfoutput>'
</CFREPORT>
As you can see from the first 2 lines, I can have the date displayed in any format that I want. However, I have the problem to pass the DATE parameter to the report. I get the error: "An unexpected error occurred while using the Crystal Engine. Error number 500 ocurred." It's so weird because I can pass any number of strings that I want but when I have a DATE parameter, I get the error.
Can someone help me, please. Thanks.
HP