Hi,
In Unit of Measure SCreen am trying to increase the ‘FromUnit’ and ‘ToUnit’ field length from nvarchar(6) to nvarchar(15)Â
and am able to change from backend but am trying customize that field DAC Level but its throwing an error
Â
Â
#region FromUnit Â
    rPXMergeAttributes(Method = MergeMethod.Append)]
      )PXDBString(15,IsUnicode =true,IsFixed =true)]
      public string FromUnit { get; set; }
      #endregion
      protected virtual void INUnit_FromUnit_CacheAttached(PXCache Sender)
      {
      }
      #region ToUnitÂ
      ÂPXMergeAttributes(Method = MergeMethod.Append)]
      PXDBString(15, IsUnicode = true, IsFixed = true)]
      public string ToUnit { get; set; }
      #endregion
     Â
      protected virtual void INUnit_ToUnit_CacheAttached(PXCache Sender)
      {
      }