Working with Fieldgroups

Last week we had a fairly straight-forward request to add the “Address 2” field to the Ship-To Address drop down. Microsoft Learn documentation describes Field Groups as table or table extension objects used to define the fields to display in a drop-down control on pages that use the table.

It should have been a simple table extension

fieldgroups

    {​​

        addlast(DropDown; "Address 2") {​​ }​​

    }​​

After making this code change Address 2 still wasn’t showing up in the drop down. So what were we missing?

Read More »