USP_RECORDOPERATION_MEMBERSHIPLEVELINCREASESEQUENCEPROMPT

Provides the prompt for the "Membership Level: Increase Sequence" record operation.

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN Represents information to be displayed in the record operation prompt.
@NAME nvarchar(100) INOUT

Definition

Copy


                        CREATE procedure dbo.USP_RECORDOPERATION_MEMBERSHIPLEVELINCREASESEQUENCEPROMPT
                        (
                            @ID uniqueidentifier,
                            @NAME nvarchar(100) output
                        )
                        as
                            set nocount on;

                            select
                                @NAME = NAME
                            from
                                dbo.MEMBERSHIPLEVEL
                            where
                                ID = @ID;

                            return 0;