UFN_BATCHBBNCDONATION_GETSPLITS
Retrieves the splits for a row in a Blackbaud Internet Solutions Donations batch.
Return
| Return Type |
|---|
| table |
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @BATCHBBNCDONATIONID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_BATCHBBNCDONATION_GETSPLITS
(
@BATCHBBNCDONATIONID uniqueidentifier
)
returns table
as
return
(
select
ID,
DESIGNATIONID,
AMOUNT,
SEQUENCE
from dbo.BATCHBBNCDONATIONSPLIT
where BATCHBBNCDONATIONID = @BATCHBBNCDONATIONID
);