I am currently developing an automation that generates some data and stores it in a file.
I currently use a string as IN argument that includes a function to create the file name each time the automtion is run:
“Downloaded Data-” & Date.Now.AddMonths(-1).ToString(“yyyy-MM”) & “.csv”
I need to change the filename, but i dont want to update the package in orchestrator, can i update the filename from the orchestrator trigger argument box:
Thanks for your support, but your answer does not solve my problem.
Maybe my scenario was not to clear as to what the real problem is.
I want to use the same process to be run from multiple triggers in orchestrator and i need to set the filenames to change according to the trigger.
I did find a workaround, i had to update the package with some replacements, but i can add some {{tags}} in the filename parameter and they get replaced in run time.