In the Wedge TOP (and other TOPs in general), what's the correct syntax for accessing a specific item from a string array attribute, in order to assign it to a new string attribute created by the Wedge?
I tried:
`P@my_str_array[@wedgeindex]`
But this generates warnings about missing
@m
and @y
attributes (it treats first letters of my_str_array
as attributes for some reason). The result is an empty attribute (object_name
in this case) for each Work Item.The following expressions do work, but they're static, while I need the index to change depending on current
@wedgeindex
.`P@my_str_array.x`
`P@my_str_array.y`
(...)
`P@my_str_array.0`
`P@my_str_array.1`
(...)