The last two weeks have been crazy busy around here....so sorry for the delay.
public Nullable<System.Decimal> JOB_TYPE { get { object loValue; PeopleBOFieldAccessingEventArgs e; Nullable<System.Decimal> loReturn; loValue = this.CurrentRow["JOB_TYPE"]; if (loValue == DBNull.Value) { loReturn = (Nullable<System.Decimal> )null; } else { loReturn = new Nullable<System.Decimal> ((System.Decimal)loValue); } e = new PeopleBOFieldAccessingEventArgs(PeopleBOFieldNames.JOB_TYPE, loReturn); this.OnFieldPropertyAccessing(this, e); return new Nullable<System.Decimal> ((System.Decimal)(e.ValueToReturn)); <===BOOM! } set {...}