USP_DATAFORMTEMPLATE_EDITLOAD_MEMBERSHIPREMOVEMEMBER
The load procedure used by the edit dataform template "Membership Remove Member Edit Form"
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | The input ID parameter used to load the fields defined on the form. |
@DATALOADED | bit | INOUT | Output parameter indicating whether or not data was actually loaded. |
@TSLONG | bigint | INOUT | Output parameter indicating the TSLONG value of the record being edited. This is used to manage multi-user concurrency issues when multiple users access the same record. |
@SEPARATEMEMBERSHIP | bit | INOUT | Create a separate membership for this member |
@TRANSFERCARDS | bit | INOUT | Transfer active cards to new membership |
@MEMBERNAME | nvarchar(700) | INOUT | Name |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_EDITLOAD_MEMBERSHIPREMOVEMEMBER
(
@ID uniqueidentifier,
@DATALOADED bit = 0 output,
@TSLONG bigint = 0 output,
@SEPARATEMEMBERSHIP bit = null output,
@TRANSFERCARDS bit = null output,
@MEMBERNAME nvarchar(700) = null output
)
as
set nocount on;
set @DATALOADED = 0
set @TSLONG = 0
select
@MEMBERNAME = NF.NAME,
@DATALOADED = 1,
@SEPARATEMEMBERSHIP = 0,
@TRANSFERCARDS = 0,
@TSLONG = MEMBER.TSLONG
from dbo.MEMBER
outer apply dbo.UFN_CONSTITUENT_DISPLAYNAME(MEMBER.CONSTITUENTID) NF
where MEMBER.ID = @ID