We’re trying to modify the Transfer action form to include a custom field from the Employee business class. We've successfully added the field to the form—it displays correctly, but unfortunately, it’s showing as read-only.
After some digging, it looks like this is due to how the Work Assignment business class works. For the field to be editable, it needs to be referenced there using “derive value from”. For example:
AdjustedStartDate is Date
derive value from Employee.AdjustedStartDate
Since we can’t modify the Work Assignment business class, we’re stuck. Is there a workaround to make the field editable on the form? Any suggestions or creative solutions would be greatly appreciated!