Oy!
CR XI
SQL Server 2000
OLE DB (ADO) Connection
I have a patient statement report that is using a couple views as it's data source. These statements will be run once a month or more. At runtime I need to be able to have Crystal execute an SQL Expression from w/in the report that in turn executes a stored procedure on the db.
I have seen many posts regarding using SP's as the data source, but none on 'calling' the SP from Crystal. Is this possible?
Currently I have tried creating an SQL Expression Field with simply the name of the sproc, this returns an error 'Invalid column name'. I tried the full syntax
(use db
go
exec sproc)
which returns an error 'Incorrect syntax near the keyword 'use''. I tried just
(exec sproc)
which returns an error 'Incorrect syntax near the keyword 'exec''
CR XI
SQL Server 2000
OLE DB (ADO) Connection
I have a patient statement report that is using a couple views as it's data source. These statements will be run once a month or more. At runtime I need to be able to have Crystal execute an SQL Expression from w/in the report that in turn executes a stored procedure on the db.
I have seen many posts regarding using SP's as the data source, but none on 'calling' the SP from Crystal. Is this possible?
Currently I have tried creating an SQL Expression Field with simply the name of the sproc, this returns an error 'Invalid column name'. I tried the full syntax
(use db
go
exec sproc)
which returns an error 'Incorrect syntax near the keyword 'use''. I tried just
(exec sproc)
which returns an error 'Incorrect syntax near the keyword 'exec''