Hi all,
Usually when we create a Data Contract class when creating a SSRS report, we put something like this for the parameter :
[ DataMemberAttribute("Firstname"),
SysOperationLabelAttribute(literalStr("@SYS32695")),
SysOperationDisplayOrderAttribute('2')
]
public Name parmFirstname(Name _firstName = firstName)
{
firstName = _firstName;
return firstName;
}
My question, can we put a default value in the box ? so when I run this report, and UI some of the field already has default value.
Thanks