USP_DATALIST_REVENUENOTES
Returns a list of all revenue notes within a revenue context.
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @REVENUEID | uniqueidentifier | IN | Input parameter indicating the context ID for the data list. |
| @DOCUMENTATIONTYPECODE | tinyint | IN | Documentation type |
| @TITLE | nvarchar(50) | IN | Title |
Definition
Copy
CREATE procedure dbo.USP_DATALIST_REVENUENOTES
(
@REVENUEID uniqueidentifier = null,
@DOCUMENTATIONTYPECODE tinyint = null,
@TITLE nvarchar(50) = ''
)
as
set nocount on;
exec dbo.USP_REVENUE_DOCUMENTATION_DATALIST_GETDATA @REVENUEID, @DOCUMENTATIONTYPECODE, @TITLE;