I have a parameter (named "MBP") generated by a list checkbox. The list correctly generates a series of comma separated values and I can see it in the "Roles window when I mouse over the parameter. However, when I try and pass it into a URL action from an action on a list table ("&Store_ID=MBP") it comes out printed as "MBP" instead of the composite values the Parameter is supposed to represent.
What am I missing here? I would use the drop down in the action creation menu, but doesn't list my parameter (maybe because it's not on the list table, but on the same page in a list checkbox). Just about all the documentation on URL building is for sending static variables, not ones generated by a list like this. Any help would be appreciated.
Have a look at this article https://communities.sas.com/t5/SAS-Communities-Library/Introduction-to-Integration-of-SAS-Visual-Ana... by @Renato_sas it shows how you can call a job and pass data to the job.
To have the value of a parameter available, you need to use the parameter in the filter pane of the DDC object, see example below, where typeSelection is your parameter
IF ( 'typeSelection'p IsSet ) RETURN ( 1 = 1 ) ELSE ( 1 = 1 )
This will ensure, that the values of the parameter are available to the job called in the DDC. See the Json passed to the DDC.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.
Find more tutorials on the SAS Users YouTube channel.