I am trying to set up a publication with a report that contains sub reports. I set the delivery rules to "Only Send when Report Contains Data". I managed to figure out that the rule works when I remove the sub reports but does not work when I include the sub reports.
I need the sub reports and...
Beautiful Dennis.....Stored procedure created and job created to run every month.
Thanks for the help guys. People will think I am actually smart today!
While I have your attention....This is going to be a stored procedure that I need to be executed once a month.
What could do I need to insert so I dont insert duplicate values based on the period field??
Table Script
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[fte]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[fte]
GO
CREATE TABLE [dbo].[fte] (
[tkinit] [varchar] (8) COLLATE Latin1_General_CI_AS NOT NULL ,
[name] [varchar] (40) COLLATE...
Have a query that when I run, the last 2 fields return results from a calulation( 1.00, .80, .20 or nulls).
When I create a table the last 2 fields are decimal fields allowing nulls.
When I insert the data into the table the last 2 fields only show values (1, 0, or null)
Any ideas??
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.