Parameterize Sequences

Is there a way to set parameters for a sequence so that all jobs in the sequence could access those parameters, instead of requiring that each job has it’s parameter updated anytime the sequence needs to be run with a different configurations?

Hi,

I think Yes, you can set parameters for a sequence by defining global parameters at the sequence level. This allows all jobs within the sequence to access these parameters ensuring that you only need to update the configuration in one place. This approach simplifies managing configurations and ensures consistency across all jobs in the sequence way properly.

Thanks