BusinessObjects Board

ALL value not displaying in LOVs

I want to add LOV like ‘ALL’ in list of values.

Followed the method mentioned in FAQ at this link

customised query:
SELECT DISTINCT
table.column
FROM
table
UNION select ’ ALL’

Not showing ALL value in LOVs,why? where is wrong.please suggest.my database is SQL Server.


JaiSimha :india: (BOB member since 2010-12-19)

Hello,

Are you using BO 4.0? If that is the case, then please go through below thread:

https://bobj-board.org/t/190853


chinmay1383 :india: (BOB member since 2010-05-11)

chinmay1383, I am using BOXI3.0.

Why it is not working the procedure in BOXI3.0?


JaiSimha :india: (BOB member since 2010-12-19)

Simha.,

If you want ALL or * for the list values then create a predefined condition. Below is the syntax


@Select(Trade\Trade) IN @Prompt('Trade Number(s) or * for All','A','Trade\Trade',multi,free) OR ('*' IN @Prompt('Trade Number(s) or * for All','A','Trade\Trade',multi,free))

Hope this helps !!!


RUC :us: (BOB member since 2010-05-03)