Stored Procedures [dbo].[MssWebGetOrderThirdPartyErrorsCount]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@inOrderidint4
Permissions
TypeActionOwning Principal
GrantExecuteMssExec
SQL Script
create procedure [dbo].[MssWebGetOrderThirdPartyErrorsCount]
    @inOrderid int
as
begin
    set nocount on;
    select count(ThirdPartyErrors.Id)
    from GetOrderThirdPartyErrors(@inOrderId) as ThirdPartyErrors
end
GO
GRANT EXECUTE ON  [dbo].[MssWebGetOrderThirdPartyErrorsCount] TO [MssExec]
GO
Uses