I've got a two deep selection going on and it is giving me shortcut errors.
I have three objects - Category, MilestoneType and ContractMilestone
Category-<Milestone Type-<Contract Milestone
Where 1-<m
On the ContractMilestone I have a shortcut to the Milestone Type to pull in MIlestoneType.Name
I have a second shortcut that is supposed to pull in the Category Name on the Contract Milestone via:
ContractMilestone.ps_MilestoneType.ob_Category.Name
When I try to use it though it is only returning
ContractMilestone.ps_MilestoneType.Name instead.
When I look on the database table it is all correctly referenced. If I try to use the Category Name as a Grouping in a query it displays:
MilestoneType:nnnnn@Attribute
where nnnnn=the ID of the MilestoneType record and Attribute is the value of the Name shortcut.

Is there a limit to how far up the chain a shortcut can go?