USP_RECORDOPERATION_MEMBERMARKASPRIMARY

Executes the "Member: Mark as primary member" record operation.

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN Input parameter indicating the ID of the record being updated.
@CHANGEAGENTID uniqueidentifier IN Input parameter indicating the ID of the change agent invoking the update.

Definition

Copy


                CREATE procedure dbo.USP_RECORDOPERATION_MEMBERMARKASPRIMARY
                (
                    @ID uniqueidentifier,
                    @CHANGEAGENTID uniqueidentifier
                )
                as begin
                    set nocount on;

                    if @CHANGEAGENTID is null
                        exec dbo.USP_CHANGEAGENT_GETORCREATECHANGEAGENT @CHANGEAGENTID output;

                    declare @MEMBERSHIPID uniqueidentifier
                    declare @CURRENTDATE datetime

                    set @CURRENTDATE = getdate()

                    select @MEMBERSHIPID = MEMBERSHIPID
                    from dbo.MEMBER
                    where ID = @ID

                    update dbo.MEMBER set
                        ISPRIMARY = 0,
                        CHANGEDBYID = @CHANGEAGENTID,
                        DATECHANGED = @CURRENTDATE
                    where MEMBERSHIPID = @MEMBERSHIPID and ISPRIMARY = 1

                    update dbo.MEMBER set 
                        ISPRIMARY = 1,
                        CHANGEDBYID = @CHANGEAGENTID,
                        DATECHANGED = @CURRENTDATE
                    where ID = @ID;

                    return 0;

                end