When you have multiple UDT definitions with the same parameter set and nest UDT instances within other definitions, there are always times when I want to reference the parameter of a parent UDT instance, but I can’t because the instance itself has the same parameter and hence this is prioritised instead.
I would like to be able to use similar relative referencing as you can do when referring to tags:
{Description} # refers to this UDT instance's 'Description' parameter, or upstream if it doesn't exist (this is the current behaviour)
{../Description} # refers to the parent/containing UDT instance's 'Description' parameter.
{../../Description} # refers to the parent of the parent's UDT instance's 'Description' parameter..
etc.