A data page is having a parameter named as StudentID now this data page is sourced by a Data Transform that is also having the same parameter(StudentID) now in that DT the logic is Set .StudentID=param.StudentID and after that in the data page the pass current page parameter checkbox is checked,so what does this checkbox signifies?
And if pass a parameter to this data page but this checkbox is not checked then at that time value of StudentID property is coming as blank.Why so?
To pass complete parameters of the parameterized datage you can use the pass parameter option so that you can make use of all param values in the respective source data transform.
In this context, it doesn’t matter the source datatransform has the parameter with same name (student name)
If you want to pass only specific parameters to the source data transform then you can unselect this checbox and pass only the params you want.
Pass parameter checkbox will pass on all the parameters available / set already irrespective of the source data transform. Also when we use this check box, parameters need to be of same names.
If you need to send a perticular parameter, clear the pass parameter and send parameters which are needed. In this case, parameter names can be different as well.
@TanyaS58 It’s used to pass the all parameters available for the source DT.
Now if u want to send only parameter written by you then unselecting the checkbox will help here .
If checkbox not checked still property coming as blank it means parameters are not available or not passed by correct manner.