BusinessObjects Board

I want One LOV where I can Select ALL values Or Multi

I want to Select Multiple Values or All Values Using One LOV? How


BoCorp (BOB member since 2008-08-04)

To allow the users to select multiple values,

@Prompt(‘message’,‘type’,[lov],[MONO|MULTI],[FREE|CONSTRAINED])

use Multi instead of Mono in the above syntax


Jansi :india: (BOB member since 2008-05-12)

So what is the problem, are you not able to create a prompt.
Be specific and give the steps followed which did not work out

.


haider :es: (BOB member since 2005-07-18)

Iam Able to Create a Prompt but it is showing only All Values to get Report…But At the Same Time i Can’t able to select Multiple values…Once i have Choice Either All or Multi…But I want One Lov where I can Select All or Multi…

Using

‘ALL’ in @Prompt(‘Message’,‘lov’,‘MONO’,‘Free’)
Iam getting Only ALL Values…But i Am unable to select Multi…

For Example:

If i have Country Object Then User want to Select ALL Countries From LOV or Multiple Countries From LOV…


BoCorp (BOB member since 2008-08-04)

Go through syntax for ALL

.


haider :es: (BOB member since 2005-07-18)

'ALL' in @Prompt('Message','lov','MONO','Free') 

Um, you have selected ‘MONO’. Maybe as you want ‘MULTI’, it should be MULTI… :wink: .


Mak 1 :uk: (BOB member since 2005-01-06)

I think you want this, either select all values, some values or one.
In 6.5 this trick in the where clause of the object, object does need lov :wink:

@select(object) in @prompt(‘Select some or * for all’,‘A’,‘object’,multi,free)
or
‘*’ in @prompt(‘Select some or * for all’,‘A’,‘object’,multi,free)

in…free) has te be excalty the same text!

Dump in the report as value and voila, should work at least on 6.5
good luck
inge


IngeH :netherlands: (BOB member since 2004-06-22)

your code is only displaying ALL values but it not able to select multiple values…


BoCorp (BOB member since 2008-08-04)

strange it works for me
check the ’ - marks around the object, they should be as in the statement
select without and in lov with
that happend to here once


IngeH :netherlands: (BOB member since 2004-06-22)