I've created a view in Oracle. The view contains a function. The function is not in the list of available fields to group on. Is there a way in Crystal 8.5 to group on a function?
Hi,
Give the function an alias for the field it produces and that should show up.
More details on your function, Oracle version, etc. would be very helpful, but something like this is what I mean:
Code:
create or replace view uses_function as
select f1, f2, get_sum_of_data(d1,d2) function_column,f4,f5 from table_name;
The above view would show function_column as the field name and should show up in Crystal. ( I don't have an actual one to test, and, besides, it could depend on your actual function.)
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.