The following table shows the result of merging field values in arrays when there are multiple users at a step.
See Merge types for a description of each merge type.
Workflow Properties
|
Step_1
|
Step_2 | ||||
---|---|---|---|---|---|---|
Field and initial value | Type |
User_A
|
User_B | User_C | Resulting values | |
int_add_0 = 0 | Add |
10
|
15
|
20
|
45
|
Adds all values |
int_add_10 = 10 | Add |
10
|
15
|
15
|
40
|
Discards User_A entry - same as initial value |
int_append = 10 | Append |
10
|
15
|
15
|
10 |
Discards User_A entry - same as initial value |
int_append_nodup = 10 | AppendNoDup |
10
|
15
|
15
|
10
15 |
Discards User_A entry - same as initial value Discards User_C entry - same as User_B entry |
int_default = 0 | Default |
10
|
15
|
20
|
0
|
No change from initial value |
int_override = 1 2 3 |
Override |
10
no change 30 |
15
20 15 |
20
no change no change |
20
2 3 |
Each entry overrides all elements of the array. User_C is the last entry. |
int_override_entry = 1 2 3 |
Override entry |
10
no change 30 |
15
20 15 |
20
no change no change |
20
20 15 |
Each entry overrides only the changed elements. |
TIP