Hi Team,
In the Employee Payroll Settings screen, there is a 'Tax Setting' tab that has a 'Name' field. This field does not exist in the database.
I added a custom field and tried to store the value from the 'Name' field into my custom field, but I'm not getting the expected result.
Could you please assist me with how to transfer the value from the non-existing field to the custom field?

public class PREmployeePayrollSettingsMaint_Extension : PXGraphExtension<PX.Objects.PR.PREmployeePayrollSettingsMaint>
{
#region Event Handlers
protected void _(Events.RowPersisting<PREmployeeAttribute> e)
{
if (e.Row == null) return;
var row = e.Row;
var rowExt = row.GetExtension<PREmployeeAttributeExt>();
// Copy Description field value to your custom field
e.Cache.SetValue<PREmployeeAttributeExt.usrName>(row, row.Description );
}
#endregion
}