Stored Procedures [dbo].[MssWebExportOrderLocationtToAccountProfile]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@inLocationIdint4
Permissions
TypeActionOwning Principal
GrantExecuteMssExec
SQL Script
create procedure [dbo].[MssWebExportOrderLocationtToAccountProfile]
    @inLocationId int
as
begin
    set nocount on;
    exec OrderLocationExportLocation @inLocationId
end
GO
GRANT EXECUTE ON  [dbo].[MssWebExportOrderLocationtToAccountProfile] TO [MssExec]
GO
Uses