UFN_REVENUE_GETSPLITS_LIST
Returns a list of splits for a given revenue record
Return
Return Type |
---|
table |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@REVENUEID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_REVENUE_GETSPLITS_LIST
(
@REVENUEID uniqueidentifier
)
returns table
as
return
(
select *
from dbo.UFN_REVENUE_GETSPLITS_LISTINCURRENCY(@REVENUEID, default)
);