Stored Procedures [dbo].[MssWebGetDocumentDeletionReasons]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Permissions
TypeActionOwning Principal
GrantExecuteMssExec
SQL Script
CREATE PROCEDURE [dbo].[MssWebGetDocumentDeletionReasons]
AS
begin
    set nocount on

    select
        [Key] = DocumentDeletionReason.DocumentDeletionReasonID,
        [Value] = DocumentDeletionReason.Reason
    from DocumentDeletionReason
end
GO
GRANT EXECUTE ON  [dbo].[MssWebGetDocumentDeletionReasons] TO [MssExec]
GO
Uses