UFN_EXCHANGEPHONEMAPPING_GETMAPPINGS
Returns phone mapping information used for in exchange integration.
Return
Return Type |
---|
table |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@EXCHANGEINTEGRATIONID | uniqueidentifier | IN |
Definition
Copy
create function dbo.UFN_EXCHANGEPHONEMAPPING_GETMAPPINGS
(
@EXCHANGEINTEGRATIONID uniqueidentifier
)
returns table
as
return
(
select
EXCHANGEPHONEMAPPING.ID,
EXCHANGEPHONEMAPPING.PHONETYPECODEID,
EXCHANGEPHONEMAPPING.OUTLOOKPHONETYPECODE
from
dbo.EXCHANGEPHONEMAPPING
where
EXCHANGEPHONEMAPPING.EXCHANGEINTEGRATIONID = @EXCHANGEINTEGRATIONID
);