USP_REVENUETRANSACTION_DELETE_PROMPT

Provides the prompt for the "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_DELETE_PROMPT
                            (
                                @ID uniqueidentifier,
                                @REVENUETYPE nvarchar(50) output
                            )
                            as
                            set nocount on;

                            select top 1 @REVENUETYPE = lower(FINANCIALTRANSACTION.TYPE) from dbo.FINANCIALTRANSACTION where ID = @ID;