Posted by a ceTe Software moderator
Hello,
The code you are using looks fine for setting the Parameter values. However the XML you sent for the dplx has no values for the parameters you have added.
<parameter type="bigInt" value="" name="@CllctnID"/>
In the above line there is no parameter value mentioned. Below is the correct syntax for this.
<parameter name="@CustomerID" type="nChar" size="5" value="#Parameters["CustomerID"]#"/>
The value mentioned here will be replaced by the value given in code. Otherwise the default values will be taken from the procedure.
You can also refer to the
help documentation on adding the parameters from designer and setting values from code.
Thanks,
ceTe Software Support Team.