How to initialize a Prompt drop-down list using a Repository Variable.
594704Nov 16 2007 — edited Mar 4 2008Hi,
the aim is to fill a drop-down list of a Year prompt only with year values that can provide data.
This Show list SQL statement works:
SELECT Time."Year" FROM "AnalysisCatalog"
WHERE Time."Year" <= 2007
Using the maxYear Repository Variable does not work:
SELECT Time."Year" FROM "AnalysisCatalog"
WHERE Time."Year" <= @{biServer.variables[’maxYear’]}
Error Codes: G689FFB3:SDKE4UTF
Expression: biServer.variables[’maxYear’]
How can I achive the result without hardcoding the Year 2007?
Mny thx Thomas