USP_DATAFORMTEMPLATE_EDITLOAD_REPORTMODELUSERACS
The load procedure used by the edit dataform template "Report Model Generator Use Record Access Security Edit Form"
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | The input ID parameter used to load the fields defined on the form. |
@USERACS | bit | INOUT | Use record access security |
@DATALOADED | bit | INOUT | Output parameter indicating whether or not data was actually loaded. |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_EDITLOAD_REPORTMODELUSERACS(@ID uniqueidentifier,
@USERACS bit = null output,
@DATALOADED bit = 0 output)
as
set nocount on;
select top(1) @DATALOADED = 1,
@USERACS = REPORTMODELUSERACS
from dbo.INSTALLATIONINFO;