Form cross table references

Is it possible to display data in a textbox control from other table than the form uses without using codeunit?
For example:
Table Customers contains a field called LicenceNeeded (true or false).
The form “Sales Order” uses table “Sales Header”, but I would like to show in a textbox control if the customer needs a licence (true or false) and that info like I already mentioned is in Customers table. I know that is possible using codeunit, but we don’t have a licence for codeunits. So is this possible without using codeunits?

It can be done if you have table- and form-design license.

On the Sales Header table (ID=36) create a new field, called LicenseNeeded.
Define this field as a flowfield, and define the flowformula, as lookup to the given field in Customer table (ID=18), with the correct link (“bill-to customer no.” = field(“no.”)).

Put this new field on the order form you want it on.

It is possible :slight_smile: And it works great :slight_smile: Thank you very much.