USP_DATAFORMTEMPLATE_ADD_REGISTRANTGUEST_PRELOAD
The load procedure used by the edit dataform template "Registrant Guest Add Form"
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@EVENTID | uniqueidentifier | IN | Input parameter indicating the context ID for the record being added. |
@CURRENTEVENTID | uniqueidentifier | INOUT | EventID |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_ADD_REGISTRANTGUEST_PRELOAD(
@EVENTID uniqueidentifier,
@CURRENTEVENTID uniqueidentifier = null output
)
as
set nocount on;
set @CURRENTEVENTID = @EVENTID;
return 0;