I’m working on a simple customization to extend the field length of the Summary (Description) field in the grid of the the Employee Time Activities screen. I’ve updated the field length with a database script included in the package (I’ve confirmed that the length is changed in the database) and I’ve updated the DAC (PMTimeActivity) to reflect the new 4000 character limit.
[PXDBString(4000, InputMask = "", IsUnicode = true)]
[PXDefault]
[PXUIField(DisplayName = "Summary", Visibility = PXUIVisibility.SelectorVisible)]
[PXFieldDescription]
[PXNavigateSelector(typeof(PX.Objects.CR.CRPMTimeActivity.summary))]
The field on the Employee Time Activities screen still only accepts the default 256 character limit. It seems like this change isn’t being inherited in the EPActivityApprove DAC that the Employee Time Activities screen uses. Either I’m running into a bug or I’m missing something simple here.