I have a UDF in the CROpportunity table.
This is the DAC Ext field:
public class CROpportunityExt : PXCacheExtension<PX.Objects.CR.CROpportunity>
{
#region UsrOppCreateDateEdit
PXDBDate]
PXUIField(DisplayName = "Created Date")]
public virtual DateTime? UsrOppCreateDateEdit { get; set; }
public abstract class usrOppCreateDateEdit : PX.Data.BQL.BqlDateTime.Field<usrOppCreateDateEdit> { }
#endregion
}
The field is on the Opportunity screen and it saves data to the DB.
I have a simple GI that uses the CROpportunity table and pulls two fields:
When I view the GI, I get an empty column
Note that the screen shot with 4/28/2022 is on OP000396.
Any ideas why the filed comes up empty on the GI?