spGetNotificationTypes

Definition

Copy

CREATE PROCEDURE [dbo].[spGetNotificationTypes]
AS
SELECT
ID,
SystemName,
SystemDescription,
ContextType
FROM NotificationType
WHERE SystemName <> 'FAF Notification'

RETURN