Hi,
I am using crystal reports version 11 connected to an oracle database.
I have several parameters that are used to build my sql.
The problem is when the user chooses NULL for the CC_DESCRIPTION parameter then the sql expert build the statement statement
"CMPL_CONTROL"."CC_DESCRIPTION"=''
For Oracle to return the correct rows it needs to be
"CMPL_CONTROL"."CC_DESCRIPTION" is null.
However if the user chooses a value other than NULL then the original query works fine.
Can anyone suggest how I can allow NULL to be a valid choice for this parameter?
I set the Convert Database NULL values to default to be true, however this did not fix the problem; I think that the problem exists before crystal reports gets the data.
The entire query (if you need it) is:
SELECT "CMPL_CONTROL"."CC_EFFECTIVE_DATE", ..., "CMPL_CONTROL"."CC_COMPANY_ID"
FROM ((("OPS$PASPROD"."CMPL_COMPO_REPORT_DET" "CMPL_COMPO_REPORT_DET" INNER JOIN "CMPL_REPORT_INSTANCE" "CMPL_REPORT_INSTANCE" ON "CMPL_COMPO_REPORT_DET"."CCRD_REPORT_INST_ID"="CMPL_REPORT_INSTANCE"."CRI_ID") INNER JOIN "OPS$PASPROD"."PARAMETER_SEQUENCE" "PARAMETER_SEQUENCE" ON "CMPL_REPORT_INSTANCE"."CRI_PS_ID"="PARAMETER_SEQUENCE"."PS_ID") INNER JOIN "OPS$PASPROD"."CMPL_CONTROL" "CMPL_CONTROL" ON "CMPL_REPORT_INSTANCE"."CRI_CONTROL_ID"="CMPL_CONTROL"."CC_ID") INNER JOIN "OPS$PASPROD"."CMPL_REPORTS" "CMPL_REPORTS" ON "PARAMETER_SEQUENCE"."PS_CRID"="CMPL_REPORTS"."CR_ID"
WHERE "CMPL_CONTROL"."CC_DESCRIPTION"='' AND ("CMPL_REPORTS"."CR_REPORT_NAME"='RATINGSMAX' OR "CMPL_REPORTS"."CR_REPORT_NAME"='RATINGSMIN')
Thanks for any suggestions
I am using crystal reports version 11 connected to an oracle database.
I have several parameters that are used to build my sql.
The problem is when the user chooses NULL for the CC_DESCRIPTION parameter then the sql expert build the statement statement
"CMPL_CONTROL"."CC_DESCRIPTION"=''
For Oracle to return the correct rows it needs to be
"CMPL_CONTROL"."CC_DESCRIPTION" is null.
However if the user chooses a value other than NULL then the original query works fine.
Can anyone suggest how I can allow NULL to be a valid choice for this parameter?
I set the Convert Database NULL values to default to be true, however this did not fix the problem; I think that the problem exists before crystal reports gets the data.
The entire query (if you need it) is:
SELECT "CMPL_CONTROL"."CC_EFFECTIVE_DATE", ..., "CMPL_CONTROL"."CC_COMPANY_ID"
FROM ((("OPS$PASPROD"."CMPL_COMPO_REPORT_DET" "CMPL_COMPO_REPORT_DET" INNER JOIN "CMPL_REPORT_INSTANCE" "CMPL_REPORT_INSTANCE" ON "CMPL_COMPO_REPORT_DET"."CCRD_REPORT_INST_ID"="CMPL_REPORT_INSTANCE"."CRI_ID") INNER JOIN "OPS$PASPROD"."PARAMETER_SEQUENCE" "PARAMETER_SEQUENCE" ON "CMPL_REPORT_INSTANCE"."CRI_PS_ID"="PARAMETER_SEQUENCE"."PS_ID") INNER JOIN "OPS$PASPROD"."CMPL_CONTROL" "CMPL_CONTROL" ON "CMPL_REPORT_INSTANCE"."CRI_CONTROL_ID"="CMPL_CONTROL"."CC_ID") INNER JOIN "OPS$PASPROD"."CMPL_REPORTS" "CMPL_REPORTS" ON "PARAMETER_SEQUENCE"."PS_CRID"="CMPL_REPORTS"."CR_ID"
WHERE "CMPL_CONTROL"."CC_DESCRIPTION"='' AND ("CMPL_REPORTS"."CR_REPORT_NAME"='RATINGSMAX' OR "CMPL_REPORTS"."CR_REPORT_NAME"='RATINGSMIN')
Thanks for any suggestions