You could create an object, say 'selectable month' with sql similar to this...
case @prompt('Select month','A',,,)
when 'Jan' then column_jan
when 'Feb' then column_feb
when 'Mar' then column_mar
...
else 0 -- bad selection
end
Of course a prompt of fixed list values would be better..
In BO you can call a user defined function in the select part of the object. if the function is a column function and you pass it a table.column value.
Here we have sys.dual in the universe and use it to ensure function is called once (only one row in dual)
eg
SELECT...
Just reading through this forum and am very interested in Orodam's comments on running stored procedures from objects. How do you do this? I have tried adding the suggested code to an object SELECT statement in Designer, but my PROC_NAME is not recognised (Oracle 8i stored procedure). On Parsing...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.