In 2020 R1, there were some screens (i.e. Customer Details, Inventory Allocation) where the results grid sorted ascending (oldest date first). Acumatica changed this in 2021 R1 to sort descending. Below is a snippit from the ARDocumentEnq graph where the code that was changed and I cant figure out a way to override the PXSelectOrderBy statement. The Documents view is what is feeding the grid data. I know the simplest thing to do is to resort the grid by clicking on the header, but our users have not had to do this for so long that they asked to see if there was a way to override this. Can anyone let me know if you know how to get past this.
Thanks Everyone
#region Selects
public PXFilter<ARDocumentFilter> Filter;
rPXFilterable]
public PXSelectOrderBy<ARDocumentResult, OrderBy<Desc<ARDocumentResult.docDate>>> Documents;
public PXSetup<ARSetup> ARSetup;
public PXSetup<Company> Company;
#endregion