UFN_BBNC_GETOWNERIDSFORMAPPINGRULE
Returns the owner IDs used to split a Blackbaud Internet Solutions transaction , if any.
Return
Return Type |
---|
table |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@NETCOMMUNITYMAPPINGRULEID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_BBNC_GETOWNERIDSFORMAPPINGRULE
(
@NETCOMMUNITYMAPPINGRULEID uniqueidentifier
)
returns table
as return
(
select
ID,
OWNERID,
SEQUENCE
from dbo.NETCOMMUNITYMAPPINGRULEOWNER
where NETCOMMUNITYMAPPINGRULEID = @NETCOMMUNITYMAPPINGRULEID
)