If I've done this:
[EventSubscriber(ObjectType::Codeunit, Codeunit::DimensionManagement, 'OnAfterSetupObjectNoList', '', false,false)]
local procedure AddShipToAddress(var TempAllObjWithCaption: Record AllObjWithCaption)
var
DimMgt: Codeunit DimensionManagement;
begin
DimMgt.InsertObject(TempAllObjWithCaption,Database::"Ship-to Address");
end;
How do I get it to pickup the assigned dimension values if I change the "Ship-to Address" on an order. Already taken care of the page actions to assign default dimension values.