Mike
Mike

Reputation: 5

Acumatica Enable Searchable Fields

I'm trying to make a field that shows up in a selector searchable. Specifically, in the Kit Assembly screen it shows Inventory ID, but you can't search this field by default when picking your assembly in the selector. I had assumed it was a simple customization checkbox, but I'm not seeing the option to enable it. In the absolutest plainest of terms, how would you go about this?

I'm not very knowledgeable yet about where to place code snippets in a customization other than setting simple things like math calculations between fields, so please feel free to break this down Barney Style.

Upvotes: 0

Views: 646

Answers (1)

Hugues Beauséjour
Hugues Beauséjour

Reputation: 8268

Log in with a user who has Customizer access rights.

Navigate to Kit Assembly screen. Select menu item Customization->Inspect Element and click on the field you need to customize. enter image description here

Then select Customize on the popup window: enter image description here

You don't give enough information in your question to identify which field you need to customize, no field name or label contains 'assembly'.

For form fields you add the filter column names separated by comma in the GridProperties->FastFilterFields property: enter image description here

For grid fields, you need to modify the RowTemplate element which is in the section labelled Levels in customization project editor. If there's no matching RowTemplate you'll need to add it from the Add Controls tab:

enter image description here

Upvotes: 4

Related Questions