Hi,
I am using CR8 and SQL database.
I created report base on the Stored Procedure with parameter: Client_ID.
When I run report in CR I get prompt only for one value of Client_ID.
I need to be able to choose one, few, or all Client_ID.
I have to use parameters from Stored Procedure, not from report, as I have to create nice boxes in ASP for users to choose Clients.
So Crystal can see only one value of parameter from sotred procedure.How I can change StoredProcedure to overcome that problem?
Please help if you can.
My relevant part of SP:
CREATE PROCEDURE dbo.sp_R_KPI (@User_ID int)
AS SELECT not relevant
WHERE (dbo.tbl_Prog.User_ID = @User_ID)
GO
Best,
Marta
I am using CR8 and SQL database.
I created report base on the Stored Procedure with parameter: Client_ID.
When I run report in CR I get prompt only for one value of Client_ID.
I need to be able to choose one, few, or all Client_ID.
I have to use parameters from Stored Procedure, not from report, as I have to create nice boxes in ASP for users to choose Clients.
So Crystal can see only one value of parameter from sotred procedure.How I can change StoredProcedure to overcome that problem?
Please help if you can.
My relevant part of SP:
CREATE PROCEDURE dbo.sp_R_KPI (@User_ID int)
AS SELECT not relevant
WHERE (dbo.tbl_Prog.User_ID = @User_ID)
GO
Best,
Marta