Skip to Content
0
Former Member
May 30, 2011 at 08:28 AM

@select() function

108 Views

Hi all, I've got object for prompting user's choice:

CASE WHEN @prompt('Your choice?','A',{'choice A','choice B'},mono,constrained) = 'choice A'

THEN table.field1

WHEN @prompt('Your choice?','A',{'choice A','choice B'},mono,constrained) = 'choice B'

THEN table.field1+table.field2

END

How do I use this object in the other objects' definition using @select() function ?

Could you please show me some example or where to read about it?

Thanks ahead.