Reputation: 31
How can I add a searchable inventoryID field in the cases module on Acumatica? I already added a custom field but can I make it searchable? Is it possible to make this InventoryID User Defined Field searchable from the inventoryItem table? Screenshot Below:
Upvotes: 1
Views: 134
Reputation: 958
You could put the [StockItem] attribute on the field if you want it to be a selector of all Stock Items. If you want to use a different query you could just use a regular PXSelector like
[PXSelector(typeof(Search<InventoryItem.inventoryID, Where<...
etc.
Upvotes: 1