[dbo].[MssWebGetDocumentDeletionReasons]
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