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
[PXMergeAttributes(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)
{
}