Hello,
I have added a User Defined Field on Journal Transactions screen. Is it possible to make this field enabled for all statuses?

I have tried to add code in the RowSelected event, but it does not work:
protected void Batch_RowSelected(PXCache cache, PXRowSelectedEventArgs e) { var row = e.Row as Batch; if (row == null) return; PXUIFieldAttribute.SetEnabled(cache, row, "AttributeRECURRING", true); }
I have also tried to add an extension of the Default workflow, but it does not work too.

Any help is appreciated!