Hi,
I created a custom processing screen and is working as expected. I configured an schedule and is running fine, but in the Automation Schedule History window the total records always is zero.

For the DAC I’m using an SQL View.
public class NewWindow : PXGraph<NewWindow >
{
public override bool IsDirty => false;
public PXFilter<Filter> filter;
public PXCancel<Filter> Cancel;
[PXFilterable]
public PXFilteredProcessing<
ShipmentToProcess,Filter,
Where<ShipmentToProcess.processflag,Equal<Current<Filter.processflag>>>>
Document;
public NewWindow ()
{
Document.SetProcessCaption(PX.Objects.IN.Messages.Process);
Document.SetProcessAllCaption(PX.Objects.IN.Messages.ProcessAll);
}
public void _(Events.RowSelected<Filter> e)
{
IUtilService serv = new UtilService();
//inside this method I set the PxProcessing<class>.SetError or Info ...
Document.SetProcessDelegate(list => serv.ProcessShipment(list));
}
}
Acumatica 2023 R1
Thanks,
EV