With Acuminator 4.0.0 on a DAC extension for BAccount it is throwing a PX1065 error for a field on the base DAC. <img width="1097" height="153" alt="Image" src="https://github.com/user-attachments/assets/bee26c7b-5bdb-4159-b046-b782a1fe85e8" /> ### My code: ```C# using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using PX.Data; using PX.Data.BQL; using PX.Objects.CR; namespace MyCustomization { public sealed class BAccountExt : PXCacheExtension<BAccount> { public static bool IsActive() => CWBanyanParameters.BanyanEnabled; #region UsrBanyanBillingID [PXDBString(100)] [PXUIField(DisplayName = "Banyan Billing ID")] public string UsrBanyanBillingID { get; set; } public abstract class usrBanyanBillingID : BqlString.Field<usrBanyanBillingID> { } #endregion } } ``` Similar error on SOShipLine: <img width="1219" height="187" alt="Image" src="https://github.com/user-attachments/assets/af7656be-d88c-4de5-ade8-4050822fb3b6" />