
[dbo].[MssWebGetShipmentDetailsDirectionsLookups]
CREATE PROCEDURE [dbo].[MssWebGetShipmentDetailsDirectionsLookups]
as
begin
set nocount on
select
[Key] = InternationalDirectionID,
[Value] = Direction
from InternationalDirection
order by Direction
end
GO
GRANT EXECUTE ON [dbo].[MssWebGetShipmentDetailsDirectionsLookups] TO [MssExec]
GO