USP_DATAFORMTEMPLATE_VIEW_CONSTITUENCYCRITERIASUMMARY
The load procedure used by the view dataform template "Constituency Criteria Summary View Form"
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@DATALOADED | bit | INOUT | Output parameter indicating whether or not data was actually loaded. |
@DUMMYFIELD | int | INOUT | DUMMYFIELD |
Definition
Copy
create procedure dbo.USP_DATAFORMTEMPLATE_VIEW_CONSTITUENCYCRITERIASUMMARY
(
@DATALOADED bit = 0 output,
@DUMMYFIELD int = null output
)
as
set nocount on;
-- be sure to set this, in case the select returns no rows
set @DATALOADED = 1;
return 0;