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

    select
        [Key] = InternationalValuationDeclinedReasonID,
        [Value] = Reason
    from InternationalValuationDeclinedReason
    order by Reason

end
GO
GRANT EXECUTE ON  [dbo].[MssWebGetValuationDeclinedReasonLookups] TO [MssExec]
GO
Uses