I'm having a custom transformer that needs an URL as input for API calls, so I made it a user parameter
However if I take the value from an attribute, that value is lost after another custom transformer that contains a list builder. If the value comes from another user parameter (set in the main), there is no issue:
This is the setting by taking the url from an attribute (table shows the output from a parameter fetcher inside the custom transformer after the list builder CT)
Â
This is how it is by taking the value from another user parameter (+ output from same parameter fetcher):
Â
Is this a bug? Am I missing something?
How could I solve this in a performant way?
Is there a way to change a value from a user parameter to an attribute value? Say I define user parameter "URL" as private one and leave it empty. After I deduct what the URL should be (fetched from a database), can I add the fetched value to the empty user parameter?
Â
Â
Â