tford wroteOne way would be to store the found objects in a reference attribute of LoggedInRegular User. The objects can then be displayed in a query whenever you'd like. Of course the attribute of LoggedInRegular User using for holding the found objects can also be cleared whenever necessary, like at the beginning of each new search.
Thank you for the reply;
At first I thought about your strategy, since I had recently READ another post of yours similar to this, but not quite similar to make it work.
My original question, was a bit generic first to see if there is a standard way. Here is more information about the case and why saving to LoggedInRegularUser isn't the ideal way of approaching it.
Firstly, it is an "Object" that needs to be passed, and not simple type VALUE like a Text.
Secondly, this means the Regularuser has to have attributes of every Object type in the Model, i.e. (Customer, Order, Product, Tax, Manufacture and etc.) in order to save it to.
Thirdly, this Object is a "Returned Object" from another Query that User selects. At this point, I don't have a way of storing this selected object into RgularUser and then "USE" it to the next Query, so the next Query would use it as an Input to FILTER against.
It's not like someone is entering a value in a form to be passed to the query. A user first runs another query (say, a list of customers), she gets a list then she picks a customer to call another query. the second query needs to look for any object that belongs to that customer. However, this query is based on a table that has no direct relationship to Customer, it's a grand kids of Customer (bottom of object graph), so it's not like a one -> many relationship.
So, I decided to pass it to a process and do the FIND in process (which works), but I can't get the result in a grid that I can select the attributes to show to user. I used DISPLAY and/or PICK FROM, but I can't seem to customize the output. (that was my next Questions)
HOWEVER, here is the good news.
Last night before sending this post, I did try calling another query from the first query, but It was not Filtering the records based on selected Customer, because it was not passed to to filter against and that what prompted this post.
Then later at (3:00 AM 🙂 ) I re-did it but a bit differently, and suddenly it worked. As it seems, a Query DOES pass an object to another query in a silent way (not like Process that you have to tell it at design time), WHICH MEANS ANY QUERY CAN PASS ANY OBJECT AT RUNTIME, without declaring it as an input at design time. 😃