UFN_WRITEOFF_GETLOGICALSPLITS
Returns the logical splits for all write-offs in the system based on the pledges they are writing off.
Return
Return Type |
---|
table |
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@REVENUESPLITID | uniqueidentifier | IN |
Definition
Copy
CREATE function dbo.UFN_WRITEOFF_GETLOGICALSPLITS
(
@REVENUESPLITID uniqueidentifier = null
)
returns table
as return
(
select * from dbo.UFN_WRITEOFF_GETLOGICALSPLITSINCURRENCY(@REVENUESPLITID, default)
)