Hi All,
I created a virtual DAC and linked that to my graph but when opening the screen it gives this error.Â
can someone help me out?
Incorrect syntax near the keyword 'WHERE'.Â
My DAC and Graph
  PXCacheName("HMRCVendorRegisterDetailDummy")]
  ÂPXVirtual]
  public class HMRCVendorRegisterDetailDummy : IBqlTable
  {
    #region Hmrcregid    Â
    public virtual int? Hmrcregid { get; set; }
    public abstract class hmrcregid : PX.Data.BQL.BqlInt.Field<hmrcregid> { }
    #endregion
    #region VendorID    Â
    gPXUIField(DisplayName = "Vendor", Required = true)]
    PXInt]   Â
    )PXCheckUnique(typeof(bAccountID))]
    PXUnboundDefault(PersistingCheck = PXPersistingCheck.NullOrBlank)]
    public virtual int? BAccountID { get; set; }
    public abstract class bAccountID : PX.Data.BQL.BqlInt.Field<bAccountID> { }
    #endregion
    #region Utrno
    bPXString(256, IsUnicode = true, InputMask = "")]
    /PXUnboundDefault(PersistingCheck = PXPersistingCheck.NullOrBlank)]
    [PXUIField(DisplayName = "UTR No", Required = true)]
    public virtual string Utrno { get; set; }
    public abstract class utrno : PX.Data.BQL.BqlString.Field<utrno> { }
    #endregion
    #region VerificationNo
    dPXString(256, IsUnicode = true, InputMask = "")]
    PXUIField(DisplayName = "Verification No")]
    sPXUnboundDefault(PersistingCheck = PXPersistingCheck.NullOrBlank)]
    public virtual string VerificationNo { get; set; }
    public abstract class verificationNo : PX.Data.BQL.BqlString.Field<verificationNo> { }
    #endregion
    #region VerifiedDate     public virtual DateTime? VerifiedDate { get; set; }     #region VerifiedTypeID     public PXSave<HMRCVendorRegisterDetailDummy> Save;     public SelectFrom<HMRCVendorRegisterDetailDummy>.View VendorRegisterDetail;  Thanks
    tPXDate()]
    tPXUIField(DisplayName = "Verified Date")]
   Â
    public abstract class verifiedDate : PX.Data.BQL.BqlDateTime.Field<verifiedDate> { }
    #endregion
    cPXString(1, IsFixed = true)]
    ePXUnboundDefault(RegisterTypes.System, PersistingCheck = PXPersistingCheck.NullOrBlank)]
      #endregion
  }
  Â
   //Graph
   public class HMRCVendorBulkRegisterNewMaint : PXGraph<HMRCVendorBulkRegisterNewMaint>
  {
    public PXCancel<HMRCVendorRegisterDetailDummy> Cancel;
  }