Stored Procedures [dbo].[MssWebGetRevenueGroupLookupItems]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Permissions
TypeActionOwning Principal
GrantExecuteMssExec
SQL Script
CREATE PROCEDURE [dbo].[MssWebGetRevenueGroupLookupItems]
AS
BEGIN
    SET NOCOUNT ON;

    SELECT RGPriKey as Id, Description
    FROM RevGroups
    WHERE Inactive = 0;
END;
GO
GRANT EXECUTE ON  [dbo].[MssWebGetRevenueGroupLookupItems] TO [MssExec]
GO
Uses