USP_DATAFORMTEMPLATE_VIEW_EXCHANGECALENDARSYNCHPROCESSSTATUS
The load procedure used by the view dataform template "Exchange Calendar Synchronization Process Status View 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. |
@NAME | nvarchar(100) | INOUT | NAME |
@BUSINESSPROCESSCATALOGID | uniqueidentifier | INOUT | BUSINESSPROCESSCATALOGID |
@PARAMETERSETID | uniqueidentifier | INOUT | PARAMETERSETID |
Definition
Copy
create procedure dbo.USP_DATAFORMTEMPLATE_VIEW_EXCHANGECALENDARSYNCHPROCESSSTATUS
(
@ID uniqueidentifier,
@DATALOADED bit = 0 output,
@NAME nvarchar(100) = null output,
@BUSINESSPROCESSCATALOGID uniqueidentifier = null output,
@PARAMETERSETID uniqueidentifier = null output
)
as
set nocount on;
set @DATALOADED = 0;
select
@DATALOADED = 1,
@NAME = EXCHANGECALENDARSYNC.NAME,
@BUSINESSPROCESSCATALOGID = '196FE9C6-1FB7-441C-965B-760042DDD1C0',
@PARAMETERSETID = @ID
from
dbo.EXCHANGECALENDARSYNC
where
EXCHANGECALENDARSYNC.ID = @ID;
return 0;