Passing NULL value to a Sub-Report Parameter fails with this message - "A parameter or data source credential is missing a value. Prompting for this value has been disabled. Supply a value or enable prompting."
Anyone else seen this
Thanks
Passing NULL value to a Sub-Report Parameter fails with this message - "A parameter or data source credential is missing a value. Prompting for this value has been disabled. Supply a value or enable prompting."
Anyone else seen this
Thanks
June CTP - Passing NULL value to a Sub-Report Parameter
Alfonso1912
Larsi
Paas the parameter to subreport .
Syntax is
paramField.ReportName="Transferee";
paramField-->ParameterField
Transferee--> Sub report name
Total Syntax is
paramField =
new ParameterField();discreteVal=
new ParameterDiscreteValue();paramField.ParameterFieldName = "@CustId";
discreteVal.Value = 2463;
paramField.CurrentValues.Add(discreteVal);
paramFields.Add(paramField);
paramField.ReportName="Transferee";
Jharker1987
Did you set 'Allow Nulls' on the parameter in the subreport