Hi,
I’m using the endpoint of Acumatica to create a SO but, when I use this code the order quantity is set to 0. I need to put this field disable because another field is filling it.
protected virtual void _(Events.RowSelected<SOLine> e)
{
PXUIFieldAttribute.SetEnabled<SOLine.orderQty>(e.Cache, e.Row, false);
}
Thank,
EV