USE [JTSConversion]
GO
/****** Object: StoredProcedure [dbo].[tblMuni_Master_Get] Script Date: 3/14/2018 11:24:34 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: MJO
-- Create date:
-- Description: Get Payment Years
-- =============================================
Create PROCEDURE [dbo].[sptblMuni_Master_Get]
-- Add the parameters for the stored procedure here
@passedHeaderID int = 0,
@MuniCode int = 0 Output,
@SchoolDistrictNum int = 0 Output,
@MuniName nvarchar(25) Output,
@FormalName nvarchar(25) Output,
@Millage float = 0 Output,
@PerCap float = 0 Output,
@ContactName nvarchar(25) Output,
@Title nvarchar(25) output
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
SELECT Top 1
@MuniCode = MuniCode
@SchoolDistrictNum = SchoolDistrictNum
@MuniName = MuniName
@FormalName = FormalName
@Millage = Millage
@PerCap = PerCap
@ContactName = ContactName
@Title = Title
FROM dbo.tblMuni_Master With (NOLOCK)
WHERE MuniMastID = @passedPayHeaderID
END
Network and collaborate with thousands of CTOs, CISOs, and IT Pros rooting for you and your success.
”The time we save is the biggest benefit of E-E to our team. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange.
Our community of experts have been thoroughly vetted for their expertise and industry experience.
The Most Valuable Expert award recognizes technology experts who passionately share their knowledge with the community, demonstrate the core values of this platform, and go the extra mile in all aspects of their contributions. This award is based off of nominations by EE users and experts. Multiple MVEs may be awarded each year.
This award recognizes a member of Experts Exchange who has made outstanding contributions to the community within their first year as an expert. The Rookie of the Year is awarded to a new expert who has the highest number of quality contributions.