The expression contains undefined function call dbo.Abs()

I was trying to use Abs database function.

Server error occurred. Please check server log for more details:
Error occured while rendering column `RemainingAmount’, (0caeae62-9ddf-4482-b66c-892b2c5035b6) - The expression contains undefined function call dbo.Abs().
The expression contains undefined function call dbo.Abs().

I’m using MS SQL as a database server.

So it has fallen back to an unknown function, which it then renders as dbo.xxx.

The error message was little bit confusing. The cause was DatasetGenerator trying to process the given function. The workaround is to enable database calculation by setting up ForceDatabaseCalculation to true.

It was decided to improve the error message and to implement support for Abs in DatasetGenerator.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.