This is the template for INHERITED known issues pages - add a tag to Issue: to allow this to show on the tagged page
Sorting References In Business Object Group Queries
This is a spacer column
Problem/Limitation Description
Sorting on reference attributes in a query will not work if query searches business object group. For example, sorting in the following query will not work if Account is business object group:
FIND Account ORDER BY Account.Owner.Name
This is a spacer column
Work Around
Define a shortcut attribute and sort by it, for example:
FIND Account ORDER BY Account.OwnerName
Where OwnerName
is the shortcut to Account.Owner.Name