USP_REVENUE_DELETE_PROMPT
Provides the prompt for the "Posted Revenue: Delete" record operation.
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | uniqueidentifier | IN | Represents information to be displayed in the record operation prompt. |
| @REVENUETYPE | nvarchar(50) | INOUT |
Definition
Copy
CREATE procedure dbo.USP_REVENUE_DELETE_PROMPT
(
@ID uniqueidentifier,
@REVENUETYPE nvarchar(50) output
)
as
set nocount on;
select @REVENUETYPE = lower(TRANSACTIONTYPE) from dbo.REVENUE where ID = @ID;