This is a combination crystal and SQL issue:
I created a VIEW in enterprise manager to capture a payment based on date and type. Here it is
SELECT giftkey, giftid, gifteffdat, giftamount, giftplgkey, gifttype, giftclass2, giftclass1, giftacctgp
FROM dbo.gifts
WHERE (giftclass2 = 'Foll') AND (gifttype IN ('b', 'y')) AND (gifteffdat >= '2006-07-01')
I would like to eliminate the (gifteffdat >= '2006-07-01') and replace it with a date parameter I can pass using a crystal report. For example if I want to pull a range of payments from 2006-07-01 through 2006-07-31, I would like to handle that on the crystal side.
Any thoughts here???
I created a VIEW in enterprise manager to capture a payment based on date and type. Here it is
SELECT giftkey, giftid, gifteffdat, giftamount, giftplgkey, gifttype, giftclass2, giftclass1, giftacctgp
FROM dbo.gifts
WHERE (giftclass2 = 'Foll') AND (gifttype IN ('b', 'y')) AND (gifteffdat >= '2006-07-01')
I would like to eliminate the (gifteffdat >= '2006-07-01') and replace it with a date parameter I can pass using a crystal report. For example if I want to pull a range of payments from 2006-07-01 through 2006-07-31, I would like to handle that on the crystal side.
Any thoughts here???