Forum Discussion
ChristianW
Valued Contributor
In the past, I also used xfbr to create comma separated lists for Delimited List Parameters. I did it to overcome problems I had with dynamic Bound List Parameters, if they needed parameters to query the database as well.
The error was caused because the custom parameter dictionary was not yet populated. To avoid the problem, you just need to test, if the custom parameter dictionary has data, before you run your code.
I‘m not at my desk, I will post a sample Monday.
ChristianW
2 years agoValued Contributor
And here is the code sample:
For Each paramValue As String In args.NameValuePairs.Values
If StringHelper.DoesStringHaveCustomSubstVars(paramValue) Then Return Nothing
Next
You have to place it after this
Case Is = DashboardDataSetFunctionType.GetDataSet
and before any other if or select statementIf any argument contains unresolved parameters, it won't continue.
I hope this helps and cheers
- VENKAB052 years agoNew Contributor III
Thanks a lot Christian.
Related Content
- 11 months ago
- 2 years ago
- 2 months ago