I need to migrate open Cases data from old system which listed on Excel file to Acumatica CRM using import scenario. After enabling the field by customizing the attribute and checking the loading result, the Date Reported field are still loaded with current date. After further checking, the problem can be solved by overriding DAC declaration. Since i am new to Acumatica framework, kindly need advice about how to Custom Base Attribute of the following field which declared on CRCase:
#region CreatedDateTime
public abstract class createdDateTime : IBqlField { }
protected DateTime? _CreatedDateTime;
[PXDBCreatedDateTimeUtc(InputMask = "g")]
[PXUIField(DisplayName = "Date Reported", Enabled = false)]
public virtual DateTime? CreatedDateTime
{
get
{
return this._CreatedDateTime;
}
set
{
this._CreatedDateTime = value;
_timeResolution = null;
}
}
#endregion