USP_DATAFORMTEMPLATE_VIEW_CLASS_MEETING_TEMPLATE_BLOCK
The load procedure used by the view dataform template "Class Meeting Template Block View"
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. |
@MEETINGS | nvarchar(1000) | INOUT | MEETINGS |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_VIEW_CLASS_MEETING_TEMPLATE_BLOCK
(
@ID uniqueidentifier,
@DATALOADED bit = 0 output,
@MEETINGS nvarchar(1000) = null output
)
as
set nocount on;
select @DATALOADED = 1,
@MEETINGS = dbo.UFN_CLASSMEETINGTEMPLATE_GETTIMELIST_FROMBLOCK(@ID)
return 0;