NitaRab
NitaRab

Reputation: 31

How can I add searchable InventoryID (User Defined Field) in the Cases module of Acumatica?

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:enter image description here

Upvotes: 1

Views: 134

Answers (1)

Rochelle C
Rochelle C

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

Related Questions