List Box load from BAQ

I am trying to set up a multi select list box and would like it populated from a dataview or BAQ. It looks like you can only add hardcoded items. Are there any other options to dynamically load a multi selected list?

Are you working in Classic or Kinetic?

A selection-list in Kinetic based on a DataView is doable.

Have you set one up before? I’m having issues getting it to work. I keep getting ‘Invalid combination of properties on the IErpSelectionListComponent’

Yeah. Here’s a quick example… I made a quick BAQ of my reason codes just to play with.

I added a DataView in App Studio called ReasonsView, which is populated by that BAQ.

In my Selection List, I set up the below settings under Dataviews:

So, it is going to Look at the ReasonsView… use the Reason_ReasonCode column for both the display and the value of the selected items.

It is going to add those values to the TransView dataview, in a column called MyList.

Under the Advanced settings:

You can largely play around with those settings and see what you want.

At the bottom, there is a setting for the delimiter… so it is going to build a list from my selection, and delimit that with a tilde (~).

Preview:

As I make selections, they are moved over to the right side of the selection list component:

If I look at the value stored in my TransView dataview, I see the compiled tilde-delimited list:

Here’s a couple other key posts if they help provide breadcrumbs for you:

1 Like

alright I think I got it working. Thank you!!