0

for example,

enter image description here

if I set parameter (ex: index = 3) at UserVariable and then, If i want to use this parameter in Job_Acitivity_312, I have to set paramter also like this(in Job_Activity_312 job), right? enter image description here

I'm confusing about parameter's scope. like local varaible, globla varaible .etc

buzzy
  • 15
  • 3

2 Answers2

1

Use the insert parameter button and navigate to the UserVariable entry to add the variable you created.

Details can be found here

You can reference that variable like this: stage_label.parameter_name

MichaelTiefenbacher
  • 3,805
  • 2
  • 11
  • 17
1

The value of a user variable is accessible anywhere downstream of the User Variables activity - there must be an unbroken set of links from the User Variable activity to where its value is needed.

Ray Wurlod
  • 831
  • 1
  • 4
  • 3
  • Thanks a lot. For example, If I set parameter Idx = 3 using User Variable Acitivity in SEQ_MAIN_JOB and SEQ_MAIN_JOB has a SEQ_INNER_JOB. In SEQ_INNER_JOB, can I use idx which I set parameter in SEQ_MAIN_JOB? – buzzy Mar 24 '23 at 09:33