Stored Procedures [dbo].[MssWebGetLocalServiceMappedLocations]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@inLocalServiceIdint4
Permissions
TypeActionOwning Principal
GrantExecuteMssExec
SQL Script
create procedure [dbo].[MssWebGetLocalServiceMappedLocations]
    @inLocalServiceId int
as
begin
    set nocount on;
    select LocServOrderLocationMap.OrderLocationFID
    from LocServOrderLocationMap
    where LocServOrderLocationMap.LocServFID = @inLocalServiceId;
end
GO
GRANT EXECUTE ON  [dbo].[MssWebGetLocalServiceMappedLocations] TO [MssExec]
GO
Uses