Foreign

Takes a single parameter, a QueryName

Description:

Indicates that the Source Query for Top Query assignments should not be the Top Query itself, but some other Query by name. This is the same as using the [|] operator but saves typing when the Source Query is not the Work Query and many assignments are to be done.

Example:

Foreign "Request"
  FirstName = MemTab.Person.FirstName
  LastName = MemTab.Person.LastName
End Foreign

The above is functionally the same as:

FirstName | "Request" | MemTab.Person.FirstName
LastName | "Request" | MemTab.Person.LastName