Hello guys,
im trying to achieve to set an standard value for the date field "requested on" in the sales orders. I executed it as follows:

- Adding the field to the screen, trying to set standard values (different formats like 09.09.9999, 09/09/9999 or 9999-09-09…) -> didnt work out

- Editing the DAC (i tried to fill in code that chatGPT gave me, didnt work out)

namespace PX.Objects.SO
{
[PXNonInstantiatedExtension]
public class SO_SOOrder_ExistingColumn : PXCacheExtension<PX.Objects.SO.SOOrder>
{
#region RequestDate
[PXMergeAttributes(Method = MergeMethod.Append)]
public DateTime? RequestDate { get; set; }
#endregion
}
}
Can you help me here, please? Thanks in advance!




