In a lot off my workspaces I need to fetch some 'global' values based upon user input. Example: user needs to provide project name: first check if projectname complies with the rules, once that is ok, use some api's to fetch global values for that project.
Now those global values are in an attribute and need to keep track of those when using attributekeepers, list builders,...
I can set them as a global variable with variable setter but it means that I need to use a lot off variable retrievers (10+).
Â
Is there a way that I can put that value in a private parameter so that I can use it across the workspace without the variable setter and retrievers?