Does a simple PICK list exist? (SOLVED)

If you have questions or if you want to share your opinion about Aware IM post your message on this forum
Post Reply
ddumas
Posts: 389
Joined: Tue Apr 23, 2013 11:17 pm

Does a simple PICK list exist? (SOLVED)

Post by ddumas »

I have a process that as the first step, needs to get a user selection, and then continue. So I am using PICK.
I used:
PICK AttendeeType where 1=1

I had to enter a bogus WHERE clause because I kept getting a syntax error unless I used one. When the list popped up, there was a checkbox to the left of each row returned and an EDIT button at the right on each row. I do not want that.

After I chose one, and clicked "Continue", the same list was returned again, without the checkbox icons, expecting me to select one yet again.

??? Is there a simple "no frills" pick list that will just return a list with no edit icons and then when I pick one, and "continue", will return that back to the process?

Dave
Last edited by ddumas on Mon Mar 09, 2020 1:22 am, edited 1 time in total.
PointsWell
Posts: 1458
Joined: Tue Jan 24, 2017 5:51 am
Location: 'Stralya

Re: Does a simple PICK list exist?

Post by PointsWell »

Build a query

FIND All AttendeeType

Define the query as you would a regular one, remove the operation on record.

Use PICK FROM QueryName
ddumas
Posts: 389
Joined: Tue Apr 23, 2013 11:17 pm

Re: Does a simple PICK list exist? (SOLVED)

Post by ddumas »

That worked perfect, thanks so much!
Dave
Post Reply