USP_REVENUETRANSACTION_DELETEPOSTED_PROMPT
Provides the prompt for the "Posted Revenue Transaction: 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_REVENUETRANSACTION_DELETEPOSTED_PROMPT
(
@ID uniqueidentifier,
@REVENUETYPE nvarchar(50) output
)
as
set nocount on;
select top 1 @REVENUETYPE = lower(FINANCIALTRANSACTION.TYPE) from dbo.FINANCIALTRANSACTION where ID = @ID;