- Instantiating an empty query – no parameter value should be specified:
Query q = new Query(); - Instantiating a query based on the AOT query:
Query q = new Query(querystr(Alertsetup)); - Instantiating a query as the copy of another query:
Query q1 = new Query();
Query q2 = new Query(q1); - Instantiating a query from the container with the packed query
Query q1 = new Query();
Query q2 = new Query(q1.pack());
Is there anything else that can be used as a source for constructing a query?

Like
Report
*This post is locked for comments