Hi
I have the query that takes query results in by Totals.
| Code |
|---|
Result = Query.Execute();
SelectionUpperItems= Result.Choose(QueryResultIteration.ByGroups);
While SelectionUpperItems.Next() Do
UpperItem= SelectionUpperItems.UpperItem;
SelectionDetailRecords = SelectionUpperItems.Choose();
While SelectionDetailRecords.Next() Do
???????????
EndDo;
EndDo;
|
In code where "???????????" noted. I want to write a command that will pass to the upper loop (SelectionUpperItems).
Command "Continue" will pass to the next iteration of inner loop.
Command "Raise" will return everything.
Which command can I use to pass to the Upper loop?
Any idea?