Skip to content

PX1065: The DAC field property "Attributes" has Acumatica attributes declared on it but does not have a corresponding BQL field #647

@EvanTrow

Description

@EvanTrow

With Acuminator 4.0.0 on a DAC extension for BAccount it is throwing a PX1065 error for a field on the base DAC.

Image

My code:

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:
Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions