for demoing purposes I’m currently building my first sets of XPages. One thing I’m trying to do is to build a @DbColumn formula to fill the values of a combobox control with all entries read from the first sorted column of a view (very basic indeed). Unfortunately, this constantly fails. Here’s what my formula looks like:
@DbColumn(@DbName(), “ByCategory”, 1)
(Yes, the view exists in the current database, and its alias name is written exactly like that; it shows documents, and the first column is sorted / categorized).
If I call a preview for my XPage Firefox gives me an Error 500 (“HTTP Web Server: Command Not Handled Exception”).
If on the other hand I remove the formula from the “values” property of the control and fill it with static values instead, the Xpage displays and gives me the right choices.
If I replace the @DbColumn with just a simple “DbName()” the Xpage display as well, giving me the expected choice of “server name” : “database file path”
Anything I somehow forgot to set?
Any help is appreciated!
BEst regards,
-Lothar