Hi Bob...
I suggested to Jim the same as you did regarding using DISPLAY QueryName but bumped into a brick wall.
So....imagine a non persisted BO MyParms with 2 Attributes MyParms.MaximumValue and MyParms.MinimumValue
I have a Part BO with 20,000 parts in it and an Attribute called Part.Value
I have a properly formatted Query called SearchResults to display my parts that has no WHERE stated in the QUERY.
Ok.... In a Process I can do this...
ENTER NEW MyParms
DISPLAY Part WHERE Part.Value>MyParms.MaximumValue AND Part.Value<MyParms.MinimumValue
Works perfectly and displays a non formatted table of all the Parts that satisfy the Query.
BUT..... and this is the same problem Jim is talking about and which I just naturally expected to work.....
ENTER NEW MyParms
DISPLAY SearchResults WHERE Part.Value>MyParms.MaximumValue AND Part.Value<MyParms.MinimumValue
Does not work.....
I was sure it is supposed to and I guess I am either using it incorrectly or it is not possible...
Any clues here as I feel like a bit of a dill.