USP_DATALIST_REVENUE_SPLIT
This datalist returns a list of splits for a revenue detail within a revenue context.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | Input parameter indicating the context ID for the data list. |
Definition
Copy
create procedure dbo.USP_DATALIST_REVENUE_SPLIT (@ID uniqueidentifier)
as
set nocount on;
exec dbo.USP_REVENUE_SPLIT_DATALIST_GETDATA @ID;