Hi,
In shipments screen Details Grid, I added Upload button and trying to update Existing data through Excel, It updating for only first line. Not updating for remaining lines.
Below is the Code I gave
In Aspx:
AllowUpload=true for details grid
In Graph Extension:
[PXImport(typeof(SOShipLine))]
      PXViewName(Messages.SOShipLine)]
     public PXSelect<SOShipLine, Where<SOShipLine.shipmentNbr, Equal<Current<SOShipment.shipmentNbr>>>, OrderBy<Asc<SOShipLine.shipmentNbr, Asc<SOShipLine.sortOrder>>>> Transactions;
Can anyone suggest on this to update all lines in grid.
      Â