08-05-2024 11:09 AM
I have an XFBR on the time filter on a Data Management step that pulls a list of time. When I run it on the Data Management tab it runs just fine and works. Now when i try to put that on a button to run on a dashboard, I get an error. I have tried using the Execute Data Management Sequence Server Task as well as running it through an extender rule. I am passing the required parameters to the either situation but im still getting an error? Why would it work on the Data Management Tab and not work while running it through a button?
Solved! Go to Solution.
08-06-2024 05:29 AM
Is the p_Forecasted_Months parameter the one you are using for the user selection? If so, try configuring your button like this:
Then in your DM step use the parameter |!param_fcstMonth!| in your XFBR and BR parameters.
Regards,
08-05-2024 11:38 AM
Change the following line of code
From: Param.Add("userSelectedMonths",FcstMonths)
To: Param.Add("p_Forecasted_Months",FcstMonths)
08-05-2024 12:46 PM
I tried that and its still not working
08-05-2024 01:02 PM
Time to add a debug statement or two in the XFBR rule to see what is being passed in, and what you are returning, as ultimately, OS is saying it didn't resolve to a valid time member filter.
08-06-2024 05:29 AM
Is the p_Forecasted_Months parameter the one you are using for the user selection? If so, try configuring your button like this:
Then in your DM step use the parameter |!param_fcstMonth!| in your XFBR and BR parameters.
Regards,