I added import functionality to the Physical Inventory Types screen IN208900.

The override for the View for the grid is as follows:
public class INPIClassMaint_Extension : PXGraphExtension<PX.Objects.IN.INPIClassMaint>
{
[PXImport(typeof(INPIClassLocation))]
public
PXSelectJoin<INPIClassLocation,
LeftJoin<INLocation, On<INPIClassLocation.FK.Location>>,
Where<INPIClassLocation.pIClassID, Equal<Current<INPIClass.pIClassID>>>>
Locations;
}
When you import the Excel file, the Pick Priority field is not available to map. I assume that is because the field is not in the INPIClassLocation table.
Does anyone know of a trick to get that field added to the view?
