USP_DATAFORMTEMPLATE_ADD_PRELOAD_EVENTLODGINGLOCATION
The load procedure used by the edit dataform template "Event Lodging Option Add Form"
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@EVENTID | uniqueidentifier | IN | Input parameter indicating the context ID for the record being added. |
@SELECTEDEVENTID | uniqueidentifier | INOUT | Event |
Definition
Copy
create procedure dbo.USP_DATAFORMTEMPLATE_ADD_PRELOAD_EVENTLODGINGLOCATION
(
@EVENTID uniqueidentifier,
@SELECTEDEVENTID uniqueidentifier = null output
)
as
set @SELECTEDEVENTID = @EVENTID;
return 0;