Hi Experts,
I have setup default value for SSRS parameter by using this prePromptModifyContract(), it works fine,
protected void prePromptModifyContract()
{
TAHN_MauNhanPhuContract subLabelContract = this.parmReportContract().parmRdpContract();
RecId recId = args.record().RecId;
InventTable inventTable = InventTable::findRecId(recId);
subLabelContract.parmManufacture(inventTable.TAHN_ManufactureCode);
// Set the report design name.
this.parmReportContract().parmReportName(ssrsReportStr(TAHN_MauNhanPhuReport, Report));
}
But when I choose another value for the Manufacture parameter, I got this issue

It seems like the Parameter only accept the default value that I assigned.
Is there anyway to choose other values without getting this issue ?
Thanks in advanced