Wrox Programmer Forums
Go Back   Wrox Programmer Forums > .NET > Other .NET > Crystal Reports
|
Crystal Reports General discussion about Crystal Reports. For discussions specific to the book Professional Crystal Reports for VS.NET, please see the book discussion forum for that book.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Crystal Reports section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 19th, 2006, 06:28 PM
Registered User
 
Join Date: Jul 2006
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default Crystal Report, Stored Procedure, Dataset

Hello,

I wanted to edit a crystal report that has been made using VS.Net 2003 and SQL Server 2000.
Under the Database Fields in Field Explorer, the developer used dataset that
was returned from stored procedure in SQL Server. The code of the stored
procedure is shown below.

CREATE PROCEDURE spP902A
AS
SELECT Store,ProgramType, COUNT(CustomerControlID) As TotalCustomer
FROM CUSTOMER_CONTROL_LOG
WHERE Status = 'A'
GROUP BY Store,ProgramType
ORDER By Store,ProgramType;
GO

CREATE PROCEDURE spP902B
AS
SELECT Store,ProgramType,MONTH(AdminDT) as Month, COUNT(CustomerControlID)
As TotalAdmits
FROM CUSTOMER_CONTROL_LOG
WHERE YEAR(AdminDT) = YEAR(GetDate())
GROUP BY Store,ProgramType,MONTH(AdminDT)
ORDER By Store,ProgramType,MONTH(AdminDT);
GO

CREATE PROCEDURE spP902C
AS
SELECT Store,ProgramType,MONTH(DischargeDT) as Month,
COUNT(CustomerControlID) As TotalDischarges
FROM CUSTOMER_CONTROL_LOG
WHERE YEAR(DischargeDT) = YEAR(GetDate())
GROUP BY Store,ProgramType,MONTH(DischargeDT)
ORDER By Store,ProgramType,MONTH(DischargeDT);
GO

The report is made so that it shows the # of customer for each program type,
each month. Eg. ProgramType A will have (spP902A-spP902B+spP902C) customers
in Jan/Feb/...
I have looked at the Crystal Report itself and under the Database Fields, it
has P902(dataset), which expands out to Store, Jan_A, Jan_B, Feb_A, Feb_B,
etc... (A, B are the ProgramType)
I have looked at dsP902.xsd(Dataset&XML), dsP902.xsx, dsP902.vb, and
rptP902.rpt, rptP902.vb, but I didn't see any query made to create Jan_A, or
Jan_B, or....

Questions:
If we have a new ProgramType C, and I wanted to include it in the report,
how do I add a new dataset (Jan_C)???
If I made a new stored procedure, and I wanted to make a dataset something
like the example I give above, how do I do that?

Thank you for your time. I am so sorry because of my poor English. If
possible, can you give a few screenshots please? I have bought a few books
about vs.net 2003, crystal reports, and have read a little about ADO.NET,
but I still don't understand. So please help me. Thank you very much in
advance. Hope to hear from you soon.







Similar Threads
Thread Thread Starter Forum Replies Last Post
Dataset & Stored Procedure Problem clioz BOOK: Professional Crystal Reports for VS.NET 0 July 21st, 2006 07:42 PM
Parameterized CRystal report & Stored procedure jay4ever_2000 ASP.NET 1.0 and 1.1 Professional 3 June 6th, 2006 08:53 AM
Return DataSet / DataTable from Stored Procedure ashu_from_india ADO.NET 3 March 20th, 2005 05:39 AM
Setting up stored procedure for Crystal Report.... potato3 SQL Language 1 December 9th, 2004 12:33 PM
How to fill stored procedure in dataset. jayaraj ADO.NET 4 August 2nd, 2004 02:40 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.