Hi Team,
I added two custom fields on the approval screen and displayed data based on the bill using the RowSelected event. The data displays correctly. I also tried using the RowPersisted event, but the issue is that the filter is not working on the field. Could you please assist me in resolving this?
public class EPApprovalExt : PXCacheExtension<PX.Objects.EP.EPApproval>
{
#region UsrProjectId
[PXDBString(255)]
[PXUIField(DisplayName="Project Id", Enabled = false)]
public virtual string UsrProjectId { get; set; }
public abstract class usrProjectId : PX.Data.BQL.BqlString.Field<usrProjectId> { }
#endregion
}

